mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-11 09:14:29 +02:00
fix wrong variable
This commit is contained in:
@@ -33,8 +33,8 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
|
|||||||
scale_step_vt = (
|
scale_step_vt = (
|
||||||
is_num(scale) ?
|
is_num(scale) ?
|
||||||
let(s = scale - 1) [s, s, s] :
|
let(s = scale - 1) [s, s, s] :
|
||||||
len(s) == 2 ? [each (scale - [1, 1]), 0]:
|
len(scale) == 2 ? [each (scale - [1, 1]), 0]:
|
||||||
scale - one
|
scale - one
|
||||||
) / len_path_pts_minus_one;
|
) / len_path_pts_minus_one;
|
||||||
|
|
||||||
// get rotation matrice for sections
|
// get rotation matrice for sections
|
||||||
|
Reference in New Issue
Block a user