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
| x | The x-axis chromaticity coordinate of the color in the range [0..1]. |
| y | The y-axis chromaticity coordinate of the color in the range [0..1]. |
| Y | The 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
| other | The other components to copy. |
Overload
Declaration
public CIExyY(Color color)Description
Creates new CIE xyY components from the given color.
Parameters
| color | The color to extract the components from. |