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

LThe lightness component of the color in the range [0..100].
uThe green-red chromaticity component of the color in the range [-100..100].
vThe 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

otherThe other components to copy.

Overload

Declaration

public CIELUV(Color color)

Description

Creates new CIE LUV components from the given color.

Parameters

colorThe color to extract the components from.