示例#1
0
 public RGBWorkingSpace(XYZColor referenceWhite, ICompanding companding, RGBPrimariesChromaticityCoordinates chromaticityCoordinates)
 {
     WhitePoint = referenceWhite;
     Companding = companding;
     ChromaticityCoordinates = chromaticityCoordinates;
 }
 public bool Equals(RGBPrimariesChromaticityCoordinates other)
 {
     return(_r.Equals(other._r) && _g.Equals(other._g) && _b.Equals(other._b));
 }
示例#3
0
 public RGBWorkingSpace(XYZColor referenceWhite, ICompanding companding, RGBPrimariesChromaticityCoordinates chromaticityCoordinates)
 {
     WhitePoint = referenceWhite;
     Companding = companding;
     ChromaticityCoordinates = chromaticityCoordinates;
 }
 public bool Equals(RGBPrimariesChromaticityCoordinates other)
 {
     return _r.Equals(other._r) && _g.Equals(other._g) && _b.Equals(other._b);
 }