From c20fd9050fe66b3d5ede83ecac9d4e0bb9f2b238 Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Tue, 5 Jan 2021 02:14:04 -0800 Subject: [PATCH] Fixed refactored shell2d() examples. --- mutators.scad | 8 +++++--- version.scad | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/mutators.scad b/mutators.scad index fc8bbef..764ae7d 100644 --- a/mutators.scad +++ b/mutators.scad @@ -605,9 +605,11 @@ module round2d(r, or, ir) // shell2d([-10,10]) {square([40,100], center=true); square([100,40], center=true);} // shell2d(10,or=10) {square([40,100], center=true); square([100,40], center=true);} // shell2d(10,ir=10) {square([40,100], center=true); square([100,40], center=true);} -// shell2d(10,round=10) {square([40,100], center=true); square([100,40], center=true);} -// shell2d(10,fill=10) {square([40,100], center=true); square([100,40], center=true);} -// shell2d(8,or=16,ir=8,round=16,fill=8) {square([40,100], center=true); square([100,40], center=true);} +// shell2d(10,or=[10,0]) {square([40,100], center=true); square([100,40], center=true);} +// shell2d(10,or=[0,10]) {square([40,100], center=true); square([100,40], center=true);} +// shell2d(10,ir=[10,0]) {square([40,100], center=true); square([100,40], center=true);} +// shell2d(10,ir=[0,10]) {square([40,100], center=true); square([100,40], center=true);} +// shell2d(8,or=[16,8],ir=[16,8]) {square([40,100], center=true); square([100,40], center=true);} module shell2d(thickness, or=0, ir=0) { thickness = is_num(thickness)? ( diff --git a/version.scad b/version.scad index a3469b0..f041b07 100644 --- a/version.scad +++ b/version.scad @@ -6,7 +6,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,509]; +BOSL_VERSION = [2,0,510]; // Section: BOSL Library Version Functions