From 5083452f1f4625adeb48fd14a9df6b4259f7f6e5 Mon Sep 17 00:00:00 2001
From: Adrian Mariano <avm4@cornell.edu>
Date: Sat, 20 Jun 2020 12:48:25 -0400
Subject: [PATCH] moved $fn inside round_corners calls

---
 rounding.scad | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/rounding.scad b/rounding.scad
index 9155116..ed1f3ec 100644
--- a/rounding.scad
+++ b/rounding.scad
@@ -94,10 +94,11 @@ include <structs.scad>
 //   verbose = if true display rounding scale factors that show how close roundovers are to overlapping.  Default: false
 //
 // Example(Med2D): Standard circular roundover with radius the same at every point. Compare results at the different corners.
-//   $fn=36;
-//   shape = [[0,0], [10,0], [15,12], [6,6], [6, 12], [-3,7]];
-//   polygon(round_corners(shape, radius=1));
-//   color("red") down(.1) polygon(shape);
+include<BOSL2/std.scad>
+   $fn=36;
+   shape = [[0,0], [10,0], [15,12], [6,6], [6, 12], [-3,7]];
+   polygon(round_corners(shape, radius=1));
+   color("red") down(.1) polygon(shape);
 // Example(Med2D): Circular roundover using the "cut" specification, the same at every corner.
 //   $fn=36;
 //   shape = [[0,0], [10,0], [15,12], [6,6], [6, 12], [-3,7]];