From 636e9b8802703132eafde51b31f8f645b89c73fb Mon Sep 17 00:00:00 2001 From: daniel watson Date: Sun, 8 Apr 2018 20:26:10 -0700 Subject: [PATCH] output results at top of code --- place-value-manipulative.scad | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/place-value-manipulative.scad b/place-value-manipulative.scad index 2ac9ecb..800e6a9 100644 --- a/place-value-manipulative.scad +++ b/place-value-manipulative.scad @@ -4,16 +4,23 @@ please do not remove this notice. */ -//$fn = 30; // use this while editing -$fn = 100; // use this for generating STL +ones_place(); +//tens_place(); +//hundreds_place(); +//thousands_place(); + +// use this while editing so previewing is faster: +//$fn = 30; +// use this for generating STL so model is more accurate: +$fn = 100; -// how big each ones place side is -side_length = 20; +// how big each ones place side is in millimeters +side_length = 10; // modify this to your aesthetic taste corner_radius = side_length / 6; -connector_thickness = corner_radius; +connector_thickness = side_length / 4; fudge = 0.1; @@ -81,8 +88,3 @@ module thousands_place() { //connector_base(connector_thickness); - -ones_place(); -//tens_place(); -//hundreds_place(); -//thousands_place(); -- 2.30.2