Esempio n. 1
0
 public CieLchuv(float l, float c, float h, CieXyz whitePoint)
     : this(new Vector3(l, c, h), whitePoint)
 {
 }
Esempio n. 2
0
 public CieLchuv(Vector3 vector, CieXyz whitePoint)
     : this()
 {
     this.backingVector = vector;
     this.WhitePoint    = whitePoint;
 }
Esempio n. 3
0
 public CieLab(float l, float a, float b, CieXyz whitePoint)
     : this(new Vector3(l, a, b), whitePoint)
 {
 }
Esempio n. 4
0
 public CieLuv(float l, float u, float v, CieXyz whitePoint)
     : this(new Vector3(l, u, v), whitePoint)
 {
 }
Esempio n. 5
0
 public HunterLab(Vector3 vector, CieXyz whitePoint)
     : this()
 {
     this.backingVector = vector;
     this.WhitePoint    = whitePoint;
 }