IColor
Cloneable
Defines color using HSL componants and range.
You have to define your HSL Range before any HSL instanciation, take a lokk at example below.
ColorSpace.HSLRANGE = HSLRange.WINDOWS; var color : HSL = new HSL( 100, 100, 100 );
new HSL()
public function HSL(h:Number, s:Number, l:Number)
Constructor.
public hue:Number
public saturation:Number
public luminance: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.