From dfa348a50cae00170f00252e2f7553c2d985cbf9 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Wed, 6 May 2020 01:46:35 -0700 Subject: [PATCH] Fixed some sphere shape examples in basic shapes tutorial. --- tutorials/Basic_Shapes.md | 4 ++-- version.scad | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/Basic_Shapes.md b/tutorials/Basic_Shapes.md index 9c9725b..8fd028b 100644 --- a/tutorials/Basic_Shapes.md +++ b/tutorials/Basic_Shapes.md @@ -494,11 +494,11 @@ BOSL2 overrides the built-in `sphere()` module. It still can be used as you expect from the built-in: ```openscad-3D - cylinder(r=50); + sphere(r=50); ``` ```openscad-3D - cylinder(d=100); + sphere(d=100); ``` You can anchor, spin, and orient `sphere()`s, much like you can with `cylinder()` diff --git a/version.scad b/version.scad index 2eb6a61..b1ae66e 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,292]; +BOSL_VERSION = [2,0,293]; // Section: BOSL Library Version Functions