From a246027a68e35c6aa54a9cfd414c7ce7b68337a1 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Sat, 24 Feb 2024 21:56:11 -0500 Subject: [PATCH] fix example by adding $fn --- rounding.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rounding.scad b/rounding.scad index f4c68cb..9468502 100644 --- a/rounding.scad +++ b/rounding.scad @@ -956,12 +956,12 @@ function _path_join(paths,joint,k=0.5,i=0,result=[],relocate=true,closed=false) // path = [[0,0],[6,2],[9,7],[8,10]]; // xdistribute(spacing=10){ // offset_stroke(path, width = 2); -// offset_stroke(path, start="round", end="round", width = 2); +// offset_stroke(path, start="round", end="round", width = 2, $fn=32); // offset_stroke(path, start="pointed", end="pointed", width = 2); // } // fwd(10) xdistribute(spacing=10){ // offset_stroke(arc, width = 2); -// offset_stroke(arc, start="round", end="round", width = 2); +// offset_stroke(arc, start="round", end="round", width = 2, $fn=32); // offset_stroke(arc, start="pointed", end="pointed", width = 2); // } // Example(2D): The effect of the `rounded` and `chamfer` options is most evident at sharp corners. This only affects the middle of the path, not the ends.