Corrected planar= default for bounding_box()

This commit is contained in:
Garth Minette 2021-01-05 02:06:39 -08:00
parent 22f6ac910b
commit 6187f5b65a
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
// } // }
// translate([10,8,4]) cube(5); // translate([10,8,4]) cube(5);
// translate([3,0,12]) cube(2); // translate([3,0,12]) cube(2);
module bounding_box(excess=0, planar=true) { module bounding_box(excess=0, planar=false) {
xs = excess>.1? excess : 1; xs = excess>.1? excess : 1;
// a 3D approx. of the children projection on X axis // a 3D approx. of the children projection on X axis
module _xProjection() module _xProjection()

View File

@ -6,7 +6,7 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,508]; BOSL_VERSION = [2,0,509];
// Section: BOSL Library Version Functions // Section: BOSL Library Version Functions