mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-01-16 13:50:23 +01:00
Merge pull request #349 from revarbat/revarbat_dev
orig sphere matching to builtin.
This commit is contained in:
commit
0dac4510a6
10
shapes.scad
10
shapes.scad
@ -1211,13 +1211,13 @@ module spheroid(r, d, circum=false, style="aligned", anchor=CENTER, spin=0, orie
|
|||||||
vsides = ceil(sides/2);
|
vsides = ceil(sides/2);
|
||||||
attachable(anchor,spin,orient, r=r) {
|
attachable(anchor,spin,orient, r=r) {
|
||||||
if (style=="orig") {
|
if (style=="orig") {
|
||||||
merids = [ for (i=[0:1:vsides]) 90-(i+0.5)*180/(vsides+1) ];
|
merids = [ for (i=[0:1:vsides-1]) 90-(i+0.5)*180/vsides ];
|
||||||
path = [
|
path = [
|
||||||
let(a = merids[0]) [0, r*sin(a)],
|
let(a = merids[0]) [0, sin(a)],
|
||||||
for (a=merids) r * [cos(a), sin(a)],
|
for (a=merids) [cos(a), sin(a)],
|
||||||
let(a = select(merids,-1)) [0, r*sin(a)]
|
let(a = select(merids,-1)) [0, sin(a)]
|
||||||
];
|
];
|
||||||
rotate_extrude(convexity=2,$fn=sides) polygon(path);
|
scale(r) rotate(180) rotate_extrude(convexity=2,$fn=sides) polygon(path);
|
||||||
} else {
|
} else {
|
||||||
vnf = spheroid(r=r, circum=circum, style=style);
|
vnf = spheroid(r=r, circum=circum, style=style);
|
||||||
vnf_polyhedron(vnf, convexity=2);
|
vnf_polyhedron(vnf, convexity=2);
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,489];
|
BOSL_VERSION = [2,0,491];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Loading…
x
Reference in New Issue
Block a user