3 references to HueToRGB
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ControlPaint.cs (3)
3061
r = (byte)(((
HueToRGB
(magic1,magic2,(int)(hue+(int)(HLSMax/3)))*(int)RGBMax + (HLSMax/2))) / (int)HLSMax);
3062
g = (byte)(((
HueToRGB
(magic1,magic2,hue)*(int)RGBMax + (HLSMax/2))) / HLSMax);
3063
b = (byte)(((
HueToRGB
(magic1,magic2,(int)(hue-(int)(HLSMax/3)))*(int)RGBMax + (HLSMax/2))) / (int)HLSMax);