Method hlsrgb
| Improve this Doc View Sourcehlsrgb(Double, Double, Double, out Double, out Double, out Double)
plhlsrgb: Convert HLS color to RGB
Declaration
public void hlsrgb(Double h, Double l, Double s, out Double p_r, out Double p_g, out Double p_b)
Parameters
Type | Name | Description |
---|---|---|
Double | h | Hue in degrees (0.0-360.0) on the color cylinder. |
Double | l | Lightness expressed as a fraction (0.0-1.0) of the axis of the color cylinder. |
Double | s | Saturation expressed as a fraction (0.0-1.0) of the radius of the color cylinder. |
Double | p_r | Returned value of the red intensity (0.0-1.0) of the color. |
Double | p_g | Returned value of the green intensity (0.0-1.0) of the color. |
Double | p_b | Returned value of the blue intensity (0.0-1.0) of the color. |
Remarks
Convert HLS color coordinates to RGB.