From 2fcca7f45d3681008ac3e1781aeda5904c3c31b0 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 10 Apr 2020 15:53:47 -0700 Subject: [PATCH] Corrected minor flaws in cuboid() roundover formation. --- shapes.scad | 10 +++++----- version.scad | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/shapes.scad b/shapes.scad index aa7a64b..8413537 100644 --- a/shapes.scad +++ b/shapes.scad @@ -208,9 +208,9 @@ module cuboid( sphere(r=rounding, $fn=sides); } else { intersection() { - zrot(180/sides) cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); - rotate([90,0,0]) zrot(180/sides) cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); - rotate([0,90,0]) zrot(180/sides) cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); + cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); + rotate([90,0,0]) cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); + rotate([0,90,0]) cylinder(r=rounding, h=rounding*2, center=true, $fn=sides); } } } @@ -269,7 +269,7 @@ module cuboid( rotate(majrots[axis]) cube([rounding*2, rounding*2, size[axis]+0.1], center=true); } translate(vmul(EDGE_OFFSETS[axis][i], size/2 - [1,1,1]*rounding)) { - rotate(majrots[axis]) zrot(180/sides) cylinder(h=size[axis]+0.2, r=rounding, center=true, $fn=sides); + rotate(majrots[axis]) cylinder(h=size[axis]+0.2, r=rounding, center=true, $fn=sides); } } } @@ -284,7 +284,7 @@ module cuboid( cube(rounding*2, center=true); } translate(vmul([xa,ya,za], size/2-[1,1,1]*rounding)) { - zrot(180/sides) sphere(r=rounding, $fn=sides); + sphere(r=rounding, $fn=sides); } } } diff --git a/version.scad b/version.scad index 974a17e..eb62479 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,260]; +BOSL_VERSION = [2,0,261]; // Section: BOSL Library Version Functions