From 2f290ca1085ee513a7c66e5ce05f015657aa803b Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 26 Apr 2019 13:37:16 -0700 Subject: [PATCH] Make staggered_sphere() have axis extrema vertices for all quant(,4) --- shapes.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes.scad b/shapes.scad index 6e5ebf9..d933887 100644 --- a/shapes.scad +++ b/shapes.scad @@ -977,7 +977,7 @@ module staggered_sphere(r=undef, d=undef, circum=false, orient=UP, anchor=CENTER ); size = [2*rr, 2*rr, 2*rr]; orient_and_anchor(size, orient, anchor, geometry="sphere", chain=true) { - polyhedron(points=pts, faces=faces); + zrot((floor(sides/4)%2==1)? 180/sides : 0) polyhedron(points=pts, faces=faces); children(); } }