mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-07 01:06:30 +02:00
Made spheroid(style=) examples clearer.
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user