Packagefrocessing.color
Interfacepublic interface IColor
SubinterfacesIFColor
ImplementorsColorHSV, ColorRGB

色オブジェクトのインターフェイスです.



Public Properties
 PropertyDefined by
  alpha : Number
色の 透明度(Alpha) 値を示します.
IColor
  alpha8 : uint
色の 透明度(Alpha) 値を 0~255 で示します.
IColor
  b : uint
色の 青(Blue) 値を示します.
IColor
  g : uint
色の 緑(Green) 値を示します.
IColor
  r : uint
色の 赤(Red) 値を示します.
IColor
  value : uint
24bit Color (0xRRGGBB) を示します.
IColor
  value32 : uint
32bit Color (0xAARRGGBB) を示します.
IColor
Property detail
alphaproperty
alpha:Number  [read-write]

色の 透明度(Alpha) 値を示します.

Implementation
    public function get alpha():Number
    public function set alpha(value:Number):void
alpha8property 
alpha8:uint  [read-write]

色の 透明度(Alpha) 値を 0~255 で示します.

Implementation
    public function get alpha8():uint
    public function set alpha8(value:uint):void
bproperty 
b:uint  [read-write]

色の 青(Blue) 値を示します.

Implementation
    public function get b():uint
    public function set b(value:uint):void
gproperty 
g:uint  [read-write]

色の 緑(Green) 値を示します.

Implementation
    public function get g():uint
    public function set g(value:uint):void
rproperty 
r:uint  [read-write]

色の 赤(Red) 値を示します.

Implementation
    public function get r():uint
    public function set r(value:uint):void
valueproperty 
value:uint  [read-write]

24bit Color (0xRRGGBB) を示します.

Implementation
    public function get value():uint
    public function set value(value:uint):void
value32property 
value32:uint  [read-write]

32bit Color (0xAARRGGBB) を示します.

Implementation
    public function get value32():uint
    public function set value32(value:uint):void