CreateHSB(H: Double; S: Double; B: Double);
H. Color hue in degrees from 0.0 to 360.0.
S. Color saturation from 0.0 to 1.0.
B. Color brightness from 0.0 to 1.0.
The CreateHSB constructor creates a new color in accordance with the specified values of hue, saturation and brightness.
Function GetColorHSB(H: Double; S: Double; B: Double): IGxColor;
Var
OutColor: IGxColor;
Begin
If (H >= 0) And (H <= 360) And
(S >= 0) And (S <= 1) And
(B >= 0) And (B <= 1) Then
OutColor := New GxColor.CreateHSB(H, S, B);
Return OutColor;
Else
Return Null;
End If;
End Function GetColorHSB;
The function returns the color created in accordance with values of color hue, saturation and brightness.
See also: