From 7a58e69a31cac5d68286071abe5843fe2093e260 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 27 Dec 2019 13:37:22 -0800 Subject: [PATCH] Clean up square() functional example. --- primitives.scad | 2 +- version.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/primitives.scad b/primitives.scad index cacf774..f25d103 100644 --- a/primitives.scad +++ b/primitives.scad @@ -40,7 +40,7 @@ // Example(2D): Called as Function // path = square([40,30], chamfer=5, anchor=FRONT, spin=30); // stroke(path, closed=true); -// place_copies(path) color("blue") sphere(d=2); +// place_copies(path) color("blue") circle(d=2,$fn=8); module square(size=1, rounding=0, chamfer=0, center, anchor=FRONT+LEFT, spin=0) { size = is_num(size)? [size,size] : point2d(size); pts = square(size=size, rounding=rounding, center=false, chamfer=chamfer); diff --git a/version.scad b/version.scad index 8c33d7a..0411d79 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,68]; +BOSL_VERSION = [2,0,69]; // Section: BOSL Library Version Functions