| 22 | double H, S, V, A; |
| 23 | |
| 24 | constexpr HsvColor() noexcept : H(0), S(0), V(0), A(0) { } |
| 25 | constexpr HsvColor(double h, double s, double v, double a = 1.0) noexcept : H(h), S(s), V(v), A(a) { } |
| 26 | constexpr HsvColor(const wf::Numerics::float4 &col) noexcept : H(col.x), S(col.y), V(col.z), A(col.w) { } |
| 27 |
no outgoing calls
no test coverage detected