CIELAB Constructor
Constructor in CIELAB
Declaration
public CIELAB(float L, float a, float b)
Description
Creates new CIE LAB components from the given values.
Parameters
L | The lightness component of the color in the range [0..100]. |
a | The green-red chromaticity component of the color in the range [-128..128]. |
b | The blue-yellow chromaticity component of the color in the range [-128..128]. |
Overload
Declaration
public CIELAB(CIELAB other)
Description
Creates a new copy of the components.
Parameters
other | The other components to copy. |
Overload
Declaration
public CIELAB(Color color)
Description
Creates new CIE LAB components from the given color.
Parameters
color | The color to extract the components from. |