1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 06:38:14 +01:00

fixed variable typo

This commit is contained in:
Justin Lin 2017-05-22 07:50:57 +08:00
parent 86794eeb37
commit 77e2c0175d

View File

@ -43,7 +43,7 @@ module arc(radius, angles, width, width_mode = "LINE_CROSS") {
points = concat(
// outer arc path
[__ra_to_xy(edge_r_begin(r_outer, angles[0]), angles[0])],
[for(i = [m:n]) __ra_to_xy(r_out, a_step * i)],
[for(i = [m:n]) __ra_to_xy(r_outer, a_step * i)],
[__ra_to_xy(edge_r_end(r_outer, angles[1]), angles[1])],
// inner arc path
[__ra_to_xy(edge_r_end(r_inner, angles[1]), angles[1])],