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