From 075172d9577bf75646c7d9d0732d0a7d6b3dca32 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Sat, 22 Jun 2019 13:11:06 -0700 Subject: [PATCH] Fixed roundcorners spinning example images. --- roundcorners.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roundcorners.scad b/roundcorners.scad index da776a2..24f6e31 100644 --- a/roundcorners.scad +++ b/roundcorners.scad @@ -136,7 +136,7 @@ include // // Smooth all corners with a circular arc and radius 1.5 (close to maximum possible) // fwd(60) // Note how the different points are cut back by different amounts // stroke(round_corners(zig,all=1.5,closed=false, curve="circle", type="radius"),width=1); -// Example(spin): Rounding some random 3d paths +// Example(FlatSpin): Rounding some random 3D paths // list1= [[2.88736, 4.03497, 6.37209], [5.68221, 9.37103, 0.783548], [7.80846, 4.39414, 1.84377], // [0.941085, 5.30548, 4.46753], [1.86054, 9.81574, 6.49753], [6.93818, 7.21163, 5.79453]]; // list2= [[1.07907, 4.74091, 6.90039], [8.77585, 4.42248, 6.65185], [5.94714, 9.17137, 6.15642], @@ -144,7 +144,7 @@ include // extrude_2dpath_along_3dpath(regular_ngon(n=36,or=.1),round_corners(list1,closed=false, curve="smooth", type="cut", all=.65)); // right(6) // extrude_2dpath_along_3dpath(regular_ngon(n=36,or=.1),round_corners(list2,closed=false, curve="circle", type="cut", all=.75)); -// Example(spin): Rounding a spiral with increased rounding along the length +// Example(FlatSpin): Rounding a spiral with increased rounding along the length // // Construct a square spiral path in 3d // square = [[0,0],[1,0],[1,1],[0,1]]; // spiral = flatten(replist(concat(square,reverse(square)),5));