| 399 | #endif |
| 400 | |
| 401 | void Color::setHue(float h) { |
| 402 | auto hsva = toHsva(); |
| 403 | *this = Color::hsva(clamp(h, 0.0f, 1.0f), hsva[1], hsva[2], alphaF()); |
| 404 | } |
| 405 | |
| 406 | void Color::setSaturation(float s) { |
| 407 | auto hsva = toHsva(); |
no test coverage detected