1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 04:20:27 +02:00

fix wrong variable

This commit is contained in:
Justin Lin
2022-04-17 20:40:04 +08:00
parent c31804a29d
commit 93704a6fd9

View File

@@ -24,7 +24,7 @@ module along_with(points, angles, twist = 0, scale = 1.0, method = "AXIS_ANGLE")
scale_step_vt = (
is_num(scale) ?
let(s = scale - 1) [s, s, s] :
len(s) == 2 ? [each (scale - [1, 1]), 0]:
len(scale) == 2 ? [each (scale - [1, 1]), 0]:
scale - scale_one
) / leng_points_minus_one;