| Modifier and Type | Origin and Description |
|---|---|
public static HSL |
sms.generalUse.DTColor.rgbToHsl(Color c!)
Converts an RGB color value to HSL. Conversion formula adapted from http://en.wikipedia.org/wiki/HSL_color_space. Assumes r, g, and b are contained in the set [0, 255] and returns h, s, and l in the set [0, 1]. |
public static HSL |
sms.generalUse.DTColor.rgbToHsl(BBjNumber r, BBjNumber g, BBjNumber b)
|
| Modifier and Type | Origin and Description |
|---|---|
public static Color |
sms.generalUse.DTColor.hslToRgb(HSL hsl!)
Converts an HSL color value to RGB. Conversion formula adapted from http://en.wikipedia.org/wiki/HSL_color_space. Assumes h, s, and l are contained in the set [0, 1] and returns r, g, and b in the set [0, 255]. |