mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Made spheroid(style=) examples clearer.
This commit is contained in:
parent
dfa348a50c
commit
33c8d80432
2 changed files with 6 additions and 6 deletions
|
@ -530,27 +530,27 @@ The `style=` argument can choose the way that the sphere will be constructed:
|
||||||
The "orig" style matches the `sphere()` built-in's construction.
|
The "orig" style matches the `sphere()` built-in's construction.
|
||||||
|
|
||||||
```openscad-3D
|
```openscad-3D
|
||||||
spheroid(d=100, style="orig");
|
spheroid(d=100, style="orig", $fn=20);
|
||||||
```
|
```
|
||||||
|
|
||||||
The "aligned" style will ensure that there is a vertex at each axis extrama,
|
The "aligned" style will ensure that there is a vertex at each axis extrema,
|
||||||
so long as `$fn` is a multiple of 4.
|
so long as `$fn` is a multiple of 4.
|
||||||
|
|
||||||
```openscad-3D
|
```openscad-3D
|
||||||
spheroid(d=100, style="aligned");
|
spheroid(d=100, style="aligned", $fn=20);
|
||||||
```
|
```
|
||||||
|
|
||||||
The "stagger" style will stagger the triangulation of the vertical rows:
|
The "stagger" style will stagger the triangulation of the vertical rows:
|
||||||
|
|
||||||
```openscad-3D
|
```openscad-3D
|
||||||
spheroid(d=100, style="stagger");
|
spheroid(d=100, style="stagger", $fn=20);
|
||||||
```
|
```
|
||||||
|
|
||||||
The "icosa"` style will make for roughly equal-sized triangles for the entire
|
The "icosa"` style will make for roughly equal-sized triangles for the entire
|
||||||
sphere surface:
|
sphere surface:
|
||||||
|
|
||||||
```openscad-3D
|
```openscad-3D
|
||||||
spheroid(d=100, style="icosa");
|
spheroid(d=100, style="icosa", $fn=20);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,293];
|
BOSL_VERSION = [2,0,294];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
Loading…
Reference in a new issue