1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-30 04:17:46 +01:00
This commit is contained in:
Justin Lin 2022-03-04 08:32:22 +08:00
parent b0f8f5c4f4
commit 26592f72cd

View File

@ -133,7 +133,7 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
remain_sections = [
for(i = 0; i < end_i; i = i + 1)
translate_pts(
local_rotate_section(i, i * twist_step_a, [1, 1, 1] + scale_step_vt * i),
local_rotate_section(i, i * twist_step_a, [1, 1, 1] + scale_step_vt * (i + 1)),
pth_pts[i + 1]
)
]