The color API has a few functions related to translating between HSL, RGB, and HSV, but the API could be more complete. For example, FromHSL is a function, but FromHSV is not. Additionally, most functions use floats rather than doubles; but it might be good to offer double versions of functions where possible because they are more precise.
The color API has a few functions related to translating between HSL, RGB, and HSV, but the API could be more complete. For example,
FromHSL
is a function, butFromHSV
is not. Additionally, most functions use floats rather than doubles; but it might be good to offer double versions of functions where possible because they are more precise.