From 5e1f247679bd28727365fb97cdfb5aa7fdbb1190 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 17 Apr 2022 20:44:52 +0800 Subject: [PATCH] fix typo --- src/along_with.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/along_with.scad b/src/along_with.scad index 2489eb47..bd2a525f 100644 --- a/src/along_with.scad +++ b/src/along_with.scad @@ -25,8 +25,8 @@ module along_with(points, angles, twist = 0, scale = 1.0, method = "AXIS_ANGLE") is_num(scale) ? let(s = scale - 1) [s, s, s] : len(scale) == 2 ? [each (scale - [1, 1]), 0]: - sscale - scale_one - ) / leng_points_minus_one; + scale - scale_one + ) / leng_points_minus_one; /* Sadly, children(n) cannot be used with inner modules