From c8394494bb785237cdd55493e10553e3bdca9516 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Tue, 5 May 2020 19:39:29 -0700 Subject: [PATCH] Minor tweaks to basic shapes tutorial. --- tutorials/Basic_Shapes.md | 6 +++--- version.scad | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/Basic_Shapes.md b/tutorials/Basic_Shapes.md index 31fcfb2..e033bd9 100644 --- a/tutorials/Basic_Shapes.md +++ b/tutorials/Basic_Shapes.md @@ -42,7 +42,7 @@ corner, counter-clockwise around to the back-left (quadrant II) corner, to the forward-left (quadrant III) corner, to the forward-right (quadrant IV) corner: ```openscad-2DImgOnly - module text3d(text) text( + module text3d(text) color("black") text( text=text, font="Times", size=10, halign="center", valign="center" ); @@ -178,7 +178,7 @@ Inscribing the ideal circle: ```openscad-2D difference() { - oval(d=100, $fn=360); + circle(d=100, $fn=360); oval(d=100, $fn=8); } ``` @@ -188,7 +188,7 @@ Circumscribing the ideal circle: ```openscad-2D difference() { oval(d=100, $fn=8, circum=true); - oval(d=100, $fn=360); + circle(d=100, $fn=360); } ``` diff --git a/version.scad b/version.scad index 22f05a8..228a6e5 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,290]; +BOSL_VERSION = [2,0,291]; // Section: BOSL Library Version Functions