Getter for the GL-friendly Float32Array form of the Color
Getter for the hex form of the Color
Construct the Color black
optional alpha value; defaults to 1
a Color with rgba (0,0,0,a=1)
Construct the Color blue
optional alpha value; defaults to 1
a Color with rgba (0,0,255,a=1)
Construct the Color cyan
optional alpha value; defaults to 1
a Color with rgba (0,255,255,a=1)
Construct the Color green
optional alpha value; defaults to 1
a Color with rgba (0,255,0,a=1)
Construct the Color grey
optional alpha value; defaults to 1
a Color with rgba (128,128,128,a=1)
Create a custom Color for a given hex string
The hex can be in the form #000000, 000000, #000 or 000.
If the string is malformed or the wrong length, a default Color will be returned (0, 0, 0)
Final r, g and b values are clamped to 255, and alpha will be 1
the hex to convert
the Color
Construct the Color magenta
optional alpha value; defaults to 1
a Color with rgba (255,0,255,a=1)
Generate a random Color with r, g and b values
Alpha value may be randomised or given as a fixed value
whether or not to generate a random alpha; default is false
a fixed Alpha to use if randomAlpha is false; default is 1
a random Color
Convenience method for generating a list of random Colors of a certain length
Alphas may be randomised or given as a fixed value for all generated Colors
the number of colors to generate
whether or not to generate a random alpha for each Color; default is false
a fixed Alpha to use for each Color if randomAlpha is false; default is 1
Construct the Color red
optional alpha value; defaults to 1
a Color with rgba (255,0,0,a=1)
Create a custom Color with given r, g, b and a values
r, g and b are clamped to 255, and a is clamped to 1. Negative values will be set to 0
the Color's red value; 0-255; defaults to 0
the Color's green value; 0-255; defaults to 0
the Color's blue value; 0-255; defaults to 0
the Color's alpha value; 0-1; defaults to 1
the Color
Construct the Color white
optional alpha value; defaults to 1
a Color with rgba (255,255,255,a=1)
Construct the Color yellow
optional alpha value; defaults to 1
a Color with rgba (255,255,0,a=1)
Class representing a Color with properties r, g, b and optionally a