public SimpleColor SimpleConvertToColor() { byte R = (byte)MathExtension.Clamp(X, 0, 255); byte G = (byte)MathExtension.Clamp(Y, 0, 255); byte B = (byte)MathExtension.Clamp(Z, 0, 255); return(new SimpleColor(R, G, B)); }
public SimpleColor ConvertToColor() { byte R = (byte)MathExtension.Clamp(X * 128 + 127, 0, 255); byte G = (byte)MathExtension.Clamp(Y * 128 + 127, 0, 255); byte B = (byte)MathExtension.Clamp(Z * 128 + 127, 0, 255); return(new SimpleColor(R, G, B)); }