LibGfx: Use valid hsv values in painter debug

This commit is contained in:
LepkoQQ 2020-08-25 16:31:14 +02:00 committed by Andreas Kling
parent 7a46e0fa35
commit bb5014fad7

View file

@ -1569,7 +1569,7 @@ void Painter::fill_path(Path& path, Color color, WindingRule winding_rule)
#ifdef FILL_PATH_DEBUG
size_t i { 0 };
for (auto& segment : segments)
draw_line(segment.from, segment.to, Color::from_hsv(++i / segments.size() * 255, 255, 255), 1);
draw_line(segment.from, segment.to, Color::from_hsv(++i / segments.size() * 360.0, 1.0, 1.0), 1);
#endif
}