Color::GetHSI

Color::GetHSI
SF_EXPORT void GetHSI(int* ph, int* ps, int* pi) const;
SF_EXPORT void GetHSI(float * ph, float * ps, float * pi) const;
Description

GetHSI retrieves the hue, saturation and intensity (Color::Hsi) of the current color, using the ConvertRGBToHSI method.

Parameters
Parameters 
Description 
int* ph 
A pointer to the hue component of the HSI. The integer range is (0 to 360), while the floating point is (0.0 to 1.0). 
int* ps 
A pointer to the saturation component of the HSI. The integer range is (0 to 255), while the floating point is (0.0 to 1.0). 
int* pi 
A pointer to the intensity component of the HSI. The integer range is (0 to 255), while the floating point is (0.0 to 1.0). 
See Also