/// <inheritdoc cref="object" />
 public bool Equals(xyChromaticityCoordinates other) => x.Equals(other.x) && y.Equals(other.y);
Beispiel #2
0
 /// <param name="chromaticity">Chromaticity coordinates (x and y together)</param>
 /// <param name="Y">Y (usually from 0 to 1)</param>
 public xyYColor(xyChromaticityCoordinates chromaticity, double Y)
 {
     Chromaticity = chromaticity;
     Luminance    = Y;
 }