DK11 for Delphi | GisTypesUI.TGIS_Color.FromHSV | Fields | Methods | Properties
Create color from hue, saturation and value/brightness.
// Delphi public class function FromHSV( const _h : Single; const _s : Single; const _v : Single ) : TGIS_Color; static; inline;
// C++ Builder public: static TGIS_Color* FromHSV( const float _h, const float _s, const float _v );
Name | Type | Description |
---|---|---|
_h | Single | hue; expected value: 0..1 |
_s | Single | saturation; expected value: 0..1 |
_v | Single | value/brightness; expected value: 0..1 |
Type | Description |
---|---|
TGIS_Color | Created color. |