Merge pull request #17407 from poke1024/fix-hsv-mismatch

Fix mismatch between Color.h and Color.from_hsv()
This commit is contained in:
Hein-Pieter van Braam 2018-03-15 22:16:57 +01:00 committed by GitHub
commit f8706cbdf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -402,6 +402,10 @@ String Color::to_html(bool p_alpha) const {
Color Color::from_hsv(float p_h, float p_s, float p_v, float p_a) {
p_h = Math::fmod(p_h * 360.0f, 360.0f);
if (p_h < 0.0)
p_h += 360.0f;
const float h_ = p_h / 60.0f;
const float c = p_v * p_s;
const float x = c * (1.0f - Math::abs(Math::fmod(h_, 2.0f) - 1.0f));