1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00
This commit is contained in:
Justin Lin
2022-05-15 20:31:00 +08:00
parent db1ff5822d
commit fb84664183

View File

@@ -15,6 +15,6 @@ function path_scaling_sections(shape_pts, edge_path) =
let(edge_p = edge_path[i], s = norm([edge_p.x, edge_p.y] / base_leng)) let(edge_p = edge_path[i], s = norm([edge_p.x, edge_p.y] / base_leng))
[ [
for(p = shape_pts * s) for(p = shape_pts * s)
[p.x, p.y, edge_p.z] [each p, edge_p.z]
] ]
]; ];