1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-24 09:33:26 +01:00

c-style for loop

This commit is contained in:
Justin Lin 2019-06-12 20:31:20 +08:00
parent 7c59a3e11b
commit 8983b01b30

View File

@ -41,7 +41,7 @@ module ellipse_extrude(semi_minor_axis, height, center = false, convexity = 10,
pre_zs = concat(
[0],
[
for(i = [0:len_fzs - 1])
for(i = 0; i < len_fzs; i = i + 1)
fzs[i][1]
]
);