We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2c871 commit 71b4c98Copy full SHA for 71b4c98
node-graph/libraries/vector-types/src/subpath/core.rs
@@ -350,6 +350,7 @@ impl<PointId: Identifier> Subpath<PointId> {
350
let mut prev_in_handle = None;
351
let theta_end = turns * std::f64::consts::TAU + start_angle;
352
353
+ let a = if spiral_type == SpiralType::Logarithmic { a.max(1e-10) } else { a };
354
let b = calculate_growth_factor(a, turns, outer_radius, spiral_type);
355
356
let mut theta = start_angle;
0 commit comments