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