IColor
Cloneable
Defines color using HSV componants and range.
You have to define your HSV Range before any HSV instanciation, take a lokk at example below.
ColorSpace.HSVRANGE = HSVRange.KDE; var color : HSV = new HSV( 100, 100, 100 );
new HSV()
public function HSV(h:Number, s:Number, v:Number)
Constructor.
public hue:Number
public saturation:Number
public value:Number
public function getColor():Number
Returns color value in Number format.
getColor() in fever.structures.IColor
public function getString():String
Return color value in hexa String format.
getString() in fever.structures.IColor
public function clone():Cloneable
Returns a clone instance.
clone() in fever.core.Cloneable
public function toString():String
Returns string representation.