1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-10 16:54:23 +02:00

not necessary

This commit is contained in:
Justin Lin
2019-06-15 11:20:00 +08:00
parent 5a37620a5b
commit 93d7c0239d

View File

@@ -37,7 +37,7 @@ function _corner_ctrl_pts(round_d, p1, p2, p3) =
function _bezier_corner(round_d, t_step, p1, p2, p3) =
bezier_curve(t_step, _corner_ctrl_pts(round_d, p1, p2, p3));
function _recursive_bezier_smooth(pts, round_d, t_step, leng, i = 0) =
function _recursive_bezier_smooth(pts, round_d, t_step, leng) =
let(end_i = leng - 2)
[
for(i = 0; i < end_i; i = i + 1)