Update precision again

This commit is contained in:
Laurenz Stampfl 2024-12-15 18:50:14 +01:00
parent a51c38a6ce
commit 945b72a207

View File

@ -358,12 +358,12 @@ fn convert_gradient(
// Precision: // Precision:
// - On an even color, insert a stop every 90deg // - On an even color, insert a stop every 90deg
// - For a hue-based color space, insert 50 stops minimum // - For a hue-based color space, insert 200 stops minimum
// - On any other, insert 20 stops minimum // - On any other, insert 20 stops minimum
let max_dt = if c0 == c1 { let max_dt = if c0 == c1 {
0.25 0.25
} else if conic.space.hue_index().is_some() { } else if conic.space.hue_index().is_some() {
0.02 0.005
} else { } else {
0.05 0.05
}; };