From 33c8d804323656fe1602179b75ad859fd7b5daca Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Wed, 6 May 2020 01:51:55 -0700 Subject: [PATCH] Made spheroid(style=) examples clearer. --- tutorials/Basic_Shapes.md | 10 +++++----- version.scad | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tutorials/Basic_Shapes.md b/tutorials/Basic_Shapes.md index 8fd028b..426ba3a 100644 --- a/tutorials/Basic_Shapes.md +++ b/tutorials/Basic_Shapes.md @@ -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. ```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. ```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: ```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 sphere surface: ```openscad-3D - spheroid(d=100, style="icosa"); + spheroid(d=100, style="icosa", $fn=20); ``` diff --git a/version.scad b/version.scad index b1ae66e..b20e50e 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,293]; +BOSL_VERSION = [2,0,294]; // Section: BOSL Library Version Functions