public CieLchuv(Vector3 vector, CieXyz whitePoint) : this() { this.backingVector = vector; this.WhitePoint = whitePoint; }
public CieLchuv(float l, float c, float h, CieXyz whitePoint) : this(new Vector3(l, c, h), whitePoint) { }
public CieLuv(float l, float u, float v, CieXyz whitePoint) : this(new Vector3(l, u, v), whitePoint) { }
public CieLab(float l, float a, float b, CieXyz whitePoint) : this(new Vector3(l, a, b), whitePoint) { }
public HunterLab(Vector3 vector, CieXyz whitePoint) : this() { this.backingVector = vector; this.WhitePoint = whitePoint; }