Options
All
  • Public
  • Public/Protected
  • All
Menu

Class used to hold a RBGA color

Hierarchy

  • Color4

Index

Constructors

  • new Color4(r?: number, g?: number, b?: number, a?: number): Color4
  • Creates a new Color4 object from red, green, blue values, all between 0 and 1

    Parameters

    • Optional r: number

      defines the red component (between 0 and 1, default is 0)

    • Optional g: number

      defines the green component (between 0 and 1, default is 0)

    • Optional b: number

      defines the blue component (between 0 and 1, default is 0)

    • Optional a: number

      defines the alpha component (between 0 and 1, default is 1)

    Returns Color4

Properties

a: number

Defines the alpha component (between 0 and 1, default is 1)

b: number

Defines the blue component (between 0 and 1, default is 0)

g: number

Defines the green component (between 0 and 1, default is 0)

r: number

Defines the red component (between 0 and 1, default is 0)

Methods

  • Creates a new Color4 set with the added values of the current Color4 and of the given one

    Parameters

    Returns Color4

    a new Color4 object

  • Adds in place the given Color4 values to the current Color4 object

    Parameters

    Returns Color4

    the current updated Color4 object

  • asArray(): number[]
  • Creates a new array populated with 4 numeric elements : red, green, blue, alpha values

    Returns number[]

    the new array

  • clampToRef(min: undefined | number, max: undefined | number, result: Color4): Color4
  • Clamps the rgb values by the min and max values and stores the result into "result"

    Parameters

    • min: undefined | number

      defines minimum clamping value (default is 0)

    • max: undefined | number

      defines maximum clamping value (default is 1)

    • result: Color4

      defines color to store the result into.

    Returns Color4

    the current Color4

  • Creates a new Color4 copied from the current one

    Returns Color4

    a new Color4 object

  • Copies the given Color4 values into the current one

    Parameters

    • source: Color4

      defines the source Color4 object

    Returns Color4

    the current updated Color4 object

  • copyFromFloats(r: number, g: number, b: number, a: number): Color4
  • Copies the given float values into the current one

    Parameters

    • r: number

      defines the red component to read from

    • g: number

      defines the green component to read from

    • b: number

      defines the blue component to read from

    • a: number

      defines the alpha component to read from

    Returns Color4

    the current updated Color4 object

  • Determines equality between Color4 objects

    Parameters

    Returns boolean

    true if the rgba values are equal to the given ones

  • Update the current color with values stored in an array from the starting index of the given array

    Parameters

    • array: DeepImmutableObject<ArrayLike<number>>

      defines the source array

    • Optional offset: number

      defines an offset in the source array

    Returns Color4

    the current Color4 object

  • getClassName(): string
  • Returns the string "Color4"

    Returns string

    "Color4"

  • getHashCode(): number
  • Compute the Color4 hash code

    Returns number

    an unique number that can be used to hash Color4 objects

  • Multiply an Color4 value by another and return a new Color4 object

    Parameters

    • color: Color4

      defines the Color4 value to multiply by

    Returns Color4

    a new Color4 object

  • Multiply a Color4 value by another and push the result in a reference value

    Parameters

    • color: Color4

      defines the Color4 value to multiply by

    • result: Color4

      defines the Color4 to fill the result in

    Returns Color4

    the result Color4

  • Creates a new Color4 with the current Color4 values multiplied by scale

    Parameters

    • scale: number

      defines the scaling factor to apply

    Returns Color4

    a new Color4 object

  • Scale the current Color4 values by a factor and add the result to a given Color4

    Parameters

    • scale: number

      defines the scale factor

    • result: Color4

      defines the Color4 object where to store the result

    Returns Color4

    the unmodified current Color4

  • scaleInPlace(scale: number): Color4
  • Multiplies the Color4 values by the float "scale"

    Parameters

    • scale: number

      defines the scaling factor to apply

    Returns Color4

    the current updated Color4

  • Multiplies the current Color4 values by scale and stores the result in "result"

    Parameters

    • scale: number

      defines the scaling factor to apply

    • result: Color4

      defines the Color4 object where to store the result

    Returns Color4

    the current unmodified Color4

  • set(r: number, g: number, b: number, a: number): Color4
  • Copies the given float values into the current one

    Parameters

    • r: number

      defines the red component to read from

    • g: number

      defines the green component to read from

    • b: number

      defines the blue component to read from

    • a: number

      defines the alpha component to read from

    Returns Color4

    the current updated Color4 object

  • Creates a new Color4 set with the subtracted values of the given one from the current Color4

    Parameters

    Returns Color4

    a new Color4 object

  • Subtracts the given ones from the current Color4 values and stores the results in "result"

    Parameters

    Returns Color4

    the current Color4 object

  • Stores from the starting index in the given array the Color4 successive values

    Parameters

    • array: FloatArray

      defines the array where to store the r,g,b components

    • Optional index: number

      defines an optional index in the target array to define where to start storing values

    Returns Color4

    the current Color4 object

  • toGammaSpace(exact?: boolean): Color4
  • Computes a new Color4 converted from the current one to gamma space

    Parameters

    • Optional exact: boolean

      defines if the conversion will be done in an exact way which is slower but more accurate (default is false)

    Returns Color4

    a new Color4 object

  • toGammaSpaceToRef(convertedColor: Color4, exact?: boolean): Color4
  • Converts the Color4 values to gamma space and stores the result in "convertedColor"

    Parameters

    • convertedColor: Color4

      defines the Color4 object where to store the gamma space version

    • Optional exact: boolean

      defines if the conversion will be done in an exact way which is slower but more accurate (default is false)

    Returns Color4

    the unmodified Color4

  • toHexString(returnAsColor3?: boolean): string
  • Compute the Color4 hexadecimal code as a string

    Parameters

    • Optional returnAsColor3: boolean

      defines if the string should only contains RGB values (off by default)

    Returns string

    a string containing the hexadecimal representation of the Color4 object

  • toLinearSpace(exact?: boolean): Color4
  • Computes a new Color4 converted from the current one to linear space

    Parameters

    • Optional exact: boolean

      defines if the conversion will be done in an exact way which is slower but more accurate (default is false)

    Returns Color4

    a new Color4 object

  • toLinearSpaceToRef(convertedColor: Color4, exact?: boolean): Color4
  • Converts the Color4 values to linear space and stores the result in "convertedColor"

    Parameters

    • convertedColor: Color4

      defines the Color4 object where to store the linear space version

    • Optional exact: boolean

      defines if the conversion will be done in an exact way which is slower but more accurate (default is false)

    Returns Color4

    the unmodified Color4

  • toString(): string
  • Creates a string with the Color4 current values

    Returns string

    the string representation of the Color4 object

  • CheckColors4(colors: number[], count: number): number[]
  • Check the content of a given array and convert it to an array containing RGBA data If the original array was already containing count * 4 values then it is returned directly

    Parameters

    • colors: number[]

      defines the array to check

    • count: number

      defines the number of RGBA data to expect

    Returns number[]

    an array containing count * 4 values (RGBA)

  • Creates a new Color4 from the starting index element of the given array

    Parameters

    • array: DeepImmutableObject<ArrayLike<number>>

      defines the source array to read from

    • Optional offset: number

      defines the offset in the source array

    Returns Color4

    a new Color4 object

  • Creates a new Color4 from the starting index element of the given array

    Parameters

    • array: DeepImmutableObject<ArrayLike<number>>

      defines the source array to read from

    • offset: undefined | number

      defines the offset in the source array

    • result: Color4

      defines the target Color4 object

    Returns void

  • Creates a new Color4 from a Color3 and an alpha value

    Parameters

    • color3: DeepImmutableObject<Color3>

      defines the source Color3 to read from

    • Optional alpha: number

      defines the alpha component (1.0 by default)

    Returns Color4

    a new Color4 object

  • FromHexString(hex: string): Color4
  • Creates a new Color4 from the string containing valid hexadecimal values.

    A valid hex string is either in the format #RRGGBB or #RRGGBBAA.

    When a hex string without alpha is passed, the resulting Color4 has its alpha value set to 1.0.

    An invalid string results in a Color with all its channels set to 0.0, i.e. "transparent black".

    Parameters

    • hex: string

      defines a string containing valid hexadecimal values

    Returns Color4

    a new Color4 object

  • FromInts(r: number, g: number, b: number, a: number): Color4
  • Creates a new Color3 from integer values (< 256)

    Parameters

    • r: number

      defines the red component to read from (value between 0 and 255)

    • g: number

      defines the green component to read from (value between 0 and 255)

    • b: number

      defines the blue component to read from (value between 0 and 255)

    • a: number

      defines the alpha component to read from (value between 0 and 255)

    Returns Color4

    a new Color3 object

  • Returns a new Color4 which is the 1st derivative of the Hermite spline defined by the colors "value1", "value2", "tangent1", "tangent2".

    Parameters

    Returns Color4

    1st derivative

  • Update a Color4 with the 1st derivative of the Hermite spline defined by the colors "value1", "value2", "tangent1", "tangent2".

    Parameters

    Returns void

  • Creates a new Color4 object set with the linearly interpolated values of "amount" between the left Color4 object and the right Color4 object

    Parameters

    Returns Color4

    a new Color4 object

  • Set the given "result" with the linearly interpolated values of "amount" between the left Color4 object and the right Color4 object

    Parameters

    Returns void

Legend

  • Constructor
  • Property
  • Method
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Property
  • Method
  • Static method

Settings

Theme