Options
All
  • Public
  • Public/Protected
  • All
Menu

Class used to hold a RGB color

Hierarchy

  • Color3

Index

Constructors

  • new Color3(r?: number, g?: number, b?: number): Color3
  • Creates a new Color3 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)

    Returns Color3

Properties

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)

Accessors

  • Gets a Color3 value containing a black color that must not be updated

    Returns DeepImmutableObject<Color3>

Methods

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

    Parameters

    Returns Color3

    the new Color3

  • Stores the result of the addition of the current Color3 and given one rgb values into "result"

    Parameters

    Returns Color3

    the unmodified current Color3

  • asArray(): number[]
  • Returns a new array populated with 3 numeric elements : red, green and blue values

    Returns number[]

    the new array

  • clampToRef(min: undefined | number, max: undefined | number, result: Color3): Color3
  • 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: Color3

      defines color to store the result into

    Returns Color3

    the original Color3

  • Copy the current object

    Returns Color3

    a new Color3 copied the current one

  • Copies the rgb values from the source in the current Color3

    Parameters

    Returns Color3

    the updated Color3 object

  • copyFromFloats(r: number, g: number, b: number): Color3
  • Updates the Color3 rgb values from the given floats

    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

    Returns Color3

    the current Color3 object

  • Determines equality between Color3 objects

    Parameters

    Returns boolean

    true if the rgb values are equal to the given ones

  • equalsFloats(r: number, g: number, b: number): boolean
  • Determines equality between the current Color3 object and a set of r,b,g values

    Parameters

    • r: number

      defines the red component to check

    • g: number

      defines the green component to check

    • b: number

      defines the blue component to check

    Returns boolean

    true if the rgb 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 Color3

    the current Color3 object

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

    Returns string

    "Color3"

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

    Returns number

    an unique number that can be used to hash Color3 objects

  • Multiply each Color3 rgb values by the given Color3 rgb values in a new Color3 object

    Parameters

    Returns Color3

    the new Color3 object

  • Multiply the rgb values of the Color3 and the given Color3 and stores the result in the object "result"

    Parameters

    Returns Color3

    the current Color3

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

    Parameters

    • scale: number

      defines the scaling factor to apply

    Returns Color3

    a new Color3 object

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

    Parameters

    • scale: number

      defines the scale factor

    • result: Color3

      defines color to store the result into

    Returns Color3

    the unmodified current Color3

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

    Parameters

    • scale: number

      defines the scaling factor to apply

    Returns Color3

    the current updated Color3

  • Multiplies the rgb values by scale and stores the result into "result"

    Parameters

    • scale: number

      defines the scaling factor

    • result: Color3

      defines the Color3 object where to store the result

    Returns Color3

    the unmodified current Color3

  • set(r: number, g: number, b: number): Color3
  • Updates the Color3 rgb values from the given floats

    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

    Returns Color3

    the current Color3 object

  • Returns a new Color3 set with the subtracted values of the given one from the current Color3

    Parameters

    Returns Color3

    the new Color3

  • Stores the result of the subtraction of given one from the current Color3 rgb values into "result"

    Parameters

    Returns Color3

    the unmodified current Color3

  • Stores in the given array from the given starting index the red, green, blue values as successive elements

    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 Color3

    the current Color3 object

  • toColor4(alpha?: number): Color4
  • Returns a new Color4 object from the current Color3 and the given alpha

    Parameters

    • Optional alpha: number

      defines the alpha component on the new Color4 object (default is 1)

    Returns Color4

    a new Color4 object

  • toGammaSpace(exact?: boolean): Color3
  • Computes a new Color3 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 Color3

    a new Color3 object

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

    Parameters

    • convertedColor: Color3

      defines the Color3 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 Color3

    the unmodified Color3

  • Converts current color in rgb space to HSV values

    Returns Color3

    a new color3 representing the HSV values

  • toHSVToRef(result: Color3): void
  • Converts current color in rgb space to HSV values

    Parameters

    • result: Color3

      defines the Color3 where to store the HSV values

    Returns void

  • toHexString(): string
  • Compute the Color3 hexadecimal code as a string

    Returns string

    a string containing the hexadecimal representation of the Color3 object

  • toLinearSpace(exact?: boolean): Color3
  • Computes a new Color3 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 Color3

    a new Color3 object

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

    Parameters

    • convertedColor: Color3

      defines the Color3 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 Color3

    the unmodified Color3

  • toLuminance(): number
  • Returns the luminance value

    Returns number

    a float value

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

    Returns string

    the string representation of the Color3 object

  • Returns a Color3 value containing a black color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a blue color

    Returns Color3

    a new Color3 object

  • Creates a new Color3 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 Color3

    a new Color3 object

  • Creates a new Color3 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: Color3

      defines the target Color3 object

    Returns void

  • FromHSV(hue: number, saturation: number, value: number): Color3
  • Converts Hue, saturation and value to a new Color3 (RGB)

    Parameters

    • hue: number

      defines the hue (value between 0 and 360)

    • saturation: number

      defines the saturation (value between 0 and 1)

    • value: number

      defines the value (value between 0 and 1)

    Returns Color3

    a new Color3 object

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

    Parameters

    • hex: string

      defines a string containing valid hexadecimal values

    Returns Color3

    a new Color3 object

  • FromInts(r: number, g: number, b: number): Color3
  • 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)

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a gray color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a green color

    Returns Color3

    a new Color3 object

  • HSVtoRGBToRef(hue: number, saturation: number, value: number, result: Color3): void
  • Converts Hue, saturation and value to a Color3 (RGB)

    Parameters

    • hue: number

      defines the hue (value between 0 and 360)

    • saturation: number

      defines the saturation (value between 0 and 1)

    • value: number

      defines the value (value between 0 and 1)

    • result: Color3

      defines the Color3 where to store the RGB values

    Returns void

  • Returns a new Color3 located for "amount" (float) on the Hermite interpolation spline defined by the vectors "value1", "tangent1", "value2", "tangent2"

    Parameters

    Returns Color3

    the new Color3

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

    Parameters

    Returns Color3

    1st derivative

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

    Parameters

    Returns void

  • Creates a new Color3 with values linearly interpolated of "amount" between the start Color3 and the end Color3

    Parameters

    Returns Color3

    a new Color3 object

  • Creates a new Color3 with values linearly interpolated of "amount" between the start Color3 and the end Color3

    Parameters

    Returns void

  • Returns a Color3 value containing a magenta color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a purple color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a random color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a red color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a teal color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a white color

    Returns Color3

    a new Color3 object

  • Returns a Color3 value containing a yellow color

    Returns Color3

    a new Color3 object

Legend

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

Settings

Theme