ARGB.kl

Types

ARGB (struct)

The argb type represents a 8 bit 4 channel color value, storing the components ordered as alpha, red, green and blue as Byte values.

参考

Color

/*
** Example: Construct ARGB
*/

ARGB color(255, 255, 0, 0);

Members

Byte a  
Byte r  
Byte g  
Byte b  

Methods

  ARGB ( in ARGB other )
  ARGB ( in Byte a, in Byte r, in Byte g, in Byte b )
  ARGB ( in Integer a, in Integer r, in Integer g, in Integer b )
  ARGB ()
ARGB add ? ( in ARGB other )
ARGB clone ? ()
Boolean equal ? ( in ARGB other )
UInt32 hash ? ()
ARGB linearInterpolate ? ( in ARGB other, in Scalar t )
ARGB multiply ? ( in ARGB other )
ARGB multiplyScalar ? ( in Scalar other )
ARGB subtract ? ( in ARGB other )

Operators

ARGB = ( Param other )