1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 04:20:27 +02:00
This commit is contained in:
Justin Lin
2019-07-27 18:19:31 +08:00
parent f5b3024b09
commit 749a9a95ae

View File

@@ -14,7 +14,8 @@ function bezier_surface(t_step, ctrl_pts) =
bezier_curve(t_step, ctrl_pts[i])
])
[for(x = 0; x < len(pts[0]); x = x + 1)
bezier_curve(t_step,
[for(y = [0:len(pts) - 1]) pts[y][x]]
bezier_curve(
t_step,
[for(y = [0:len(pts) - 1]) pts[y][x]]
)
];