diff --git a/masks.scad b/masks.scad index aa867c1..6f6c43f 100644 --- a/masks.scad +++ b/masks.scad @@ -259,7 +259,7 @@ module chamfer_mask_z(l=1.0, chamfer=1.0, anchor=CENTER, spin=0) { // cube(size=[20,40,30], center=true); // } // Example(FR): -// chamfer(chamfer=2, size=[20,40,30], edges=edges([TOP,FRONT+RIGHT], except=TOP+LEFT)) { +// chamfer(chamfer=2, size=[20,40,30], edges=[TOP,FRONT+RIGHT], except_edges=TOP+LEFT) { // cube(size=[20,40,30], center=true); // } module chamfer(chamfer=1, size=[1,1,1], edges=EDGES_ALL, except_edges=[]) @@ -552,7 +552,7 @@ module rounding_mask_z(l=1.0, r=undef, r1=undef, r2=undef, anchor=CENTER, spin=0 // cube(size=[50,100,150], center=true); // } // Example(FR,FlatSpin): -// rounding(r=10, size=[50,50,75], edges=edges([TOP,FRONT+RIGHT], except=TOP+LEFT), $fn=24) { +// rounding(r=10, size=[50,50,75], edges=[TOP,FRONT+RIGHT], except_edges=TOP+LEFT, $fn=24) { // cube(size=[50,50,75], center=true); // } module rounding(r=1, size=[1,1,1], edges=EDGES_ALL, except_edges=[]) diff --git a/shapes.scad b/shapes.scad index 86ddf74..ee9f5a6 100644 --- a/shapes.scad +++ b/shapes.scad @@ -48,17 +48,17 @@ // Example: Rounded Edges, Untrimmed Corners // cuboid([30,40,50], rounding=10, trimcorners=false); // Example: Chamferring Selected Edges -// cuboid([30,40,50], chamfer=5, edges=edges([TOP+FRONT,TOP+RIGHT,FRONT+RIGHT]), $fn=24); +// cuboid([30,40,50], chamfer=5, edges=[TOP+FRONT,TOP+RIGHT,FRONT+RIGHT], $fn=24); // Example: Rounding Selected Edges -// cuboid([30,40,50], rounding=5, edges=edges([TOP+FRONT,TOP+RIGHT,FRONT+RIGHT]), $fn=24); +// cuboid([30,40,50], rounding=5, edges=[TOP+FRONT,TOP+RIGHT,FRONT+RIGHT], $fn=24); // Example: Negative Chamferring -// cuboid([30,40,50], chamfer=-5, edges=edges([TOP,BOT], RIGHT), $fn=24); +// cuboid([30,40,50], chamfer=-5, edges=[TOP,BOT], except_edges=RIGHT, $fn=24); // Example: Negative Chamferring, Untrimmed Corners -// cuboid([30,40,50], chamfer=-5, edges=edges([TOP,BOT], RIGHT), trimcorners=false, $fn=24); +// cuboid([30,40,50], chamfer=-5, edges=[TOP,BOT], except_edges=RIGHT, trimcorners=false, $fn=24); // Example: Negative Rounding -// cuboid([30,40,50], rounding=-5, edges=edges([TOP,BOT], RIGHT), $fn=24); +// cuboid([30,40,50], rounding=-5, edges=[TOP,BOT], except_edges=RIGHT, $fn=24); // Example: Negative Rounding, Untrimmed Corners -// cuboid([30,40,50], rounding=-5, edges=edges([TOP,BOT], RIGHT), trimcorners=false, $fn=24); +// cuboid([30,40,50], rounding=-5, edges=[TOP,BOT], except_edges=RIGHT, trimcorners=false, $fn=24); // Example: Standard Connectors // cuboid(40) show_anchors(); module cuboid( diff --git a/version.scad b/version.scad index db82356..3aa36f1 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,297]; +BOSL_VERSION = [2,0,298]; // Section: BOSL Library Version Functions