Conversion.HSIToRGB
Static Method in Conversion
Declaration
public static Color HSIToRGB(float H, float S, float I)Description
Converts HSI components to an RGB color.
Parameters
| H | The hue component of the color in the range [0..1]. |
| S | The saturation component of the color in the range [0..1]. |
| I | The intensity component of the color in the range [0..1]. |
Returns
| Color | The converted RGB color. |