From 61cb5eaf567b96490321f24d1491856db069a939 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 24 Dec 2024 08:29:32 -0500 Subject: [PATCH] propagate fix for negative helix angles to function spur_gear and module ring_gear --- gears.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gears.scad b/gears.scad index 70bb9a6..3433a61 100644 --- a/gears.scad +++ b/gears.scad @@ -932,7 +932,7 @@ function spur_gear( : assert(false,"atype must be one of \"root\", \"tip\" or \"pitch\""), circum = 2 * PI * pr, twist = 360*thickness*tan(helical)/circum, - slices = default(slices, ceil(twist/360*segs(pr)+1)), + slices = default(slices, ceil(abs(twist)/360*segs(pr)+1)), rgn = spur_gear2d( circ_pitch = circ_pitch, teeth = teeth, @@ -1437,7 +1437,7 @@ module ring_gear( : 2*ar - rr; // default case circum = 2 * PI * pr; twist = 360*thickness*tan(-helical)/circum; - slices = default(slices, ceil(twist/360*segs(pr)+1)); + slices = default(slices, ceil(abs(twist)/360*segs(pr)+1)); attachable(anchor,spin,orient, h=thickness, r=atype=="outside"?or:pr) { zrot(gear_spin) if (herringbone) {