Class HSV

java.lang.Object
  extended by HSV

public class HSV
extends Object

An instance is an HSV value.


Field Summary
 double h
          h, s, and v are the components of an HSV value
 double s
           
 double v
           
 
Constructor Summary
HSV(double h, double s, double v)
          Constructor: the tuple (h, s, v) Precondition: 0 <= h < 360, 0 <= s <= 1, 0 <= v <= 1.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

h

public double h
h, s, and v are the components of an HSV value


s

public double s

v

public double v
Constructor Detail

HSV

public HSV(double h,
           double s,
           double v)
Constructor: the tuple (h, s, v) Precondition: 0 <= h < 360, 0 <= s <= 1, 0 <= v <= 1.