From c7e8cd3d99b0c3200168503bfcc881bafc9aeece Mon Sep 17 00:00:00 2001 From: Richard Milewski Date: Fri, 30 Jun 2023 16:54:18 -0700 Subject: [PATCH] Update attachments.scad Minor typos in diff() example 6 --- attachments.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attachments.scad b/attachments.scad index 412c8c7..26f2946 100644 --- a/attachments.scad +++ b/attachments.scad @@ -984,7 +984,7 @@ module tag_scope(scope){ // module pipe(length, od, id) { // // Strip the tag the user is using to subtract // tag("")cylinder(h=length, d=od, center=true); -// // Leave the tag along here, so this one is removed +// // Leave the tag alone here, so this one is removed // cylinder(h=length+.02, d=id, center=true); // } // // Draw some intersecting pipes @@ -996,7 +996,7 @@ module tag_scope(scope){ // } // // The orange bar has its center removed // color("orange") down(1) xcyl(h=8, d=1); -// // "keep" prevents interior of the blue bar intact +// // "keep" preserves the interior of the blue bar intact // tag("keep") recolor("blue") up(1) xcyl(h=8, d=1); // } // // Objects outside the diff don't have pipe interiors removed