1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 10:44:48 +02:00

modified range

This commit is contained in:
Justin Lin
2017-04-08 08:38:27 +08:00
parent 008ee11526
commit d3c5fecc58

View File

@@ -41,7 +41,7 @@ function _bezier_curve_point(t, points) =
]; ];
function bezier_curve(t_step, points) = function bezier_curve(t_step, points) =
[ concat([
for(t = [0: t_step: 1 + t_step]) for(t = [0: t_step: 1])
_bezier_curve_point(t, points) _bezier_curve_point(t, points)
]; ], [_bezier_curve_point(1, points)]);