CIExyY Constructor

Constructor in CIExyY

Declaration

public CIExyY(float x, float y, float Y = 1F)

Description

Creates new CIE xyY components from the given values.

Parameters

xThe x-axis chromaticity coordinate of the color in the range [0..1].
yThe y-axis chromaticity coordinate of the color in the range [0..1].
YThe luminance component of the color in the range [0..100].

Overload

Declaration

public CIExyY(CIExyY other)

Description

Creates a new copy of the components.

Parameters

otherThe other components to copy.

Overload

Declaration

public CIExyY(Color color)

Description

Creates new CIE xyY components from the given color.

Parameters

colorThe color to extract the components from.