From 627e99e4f1221f3bc0033654884b6bb69dbaee1a Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Thu, 12 Jun 2014 20:22:31 -0400 Subject: [PATCH] Changed the dimensions to look more like the screenshots on ParametricParts.com. --- examples/FreeCAD/Ex001_Simple_Block.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/FreeCAD/Ex001_Simple_Block.py b/examples/FreeCAD/Ex001_Simple_Block.py index ccda94a..076be4c 100644 --- a/examples/FreeCAD/Ex001_Simple_Block.py +++ b/examples/FreeCAD/Ex001_Simple_Block.py @@ -20,9 +20,9 @@ import cadquery import Part #The dimensions of the box. These can be modified rather than changing the box's code directly. -length = 100.0 -height = 100.0 -thickness = 20.0 +length = 80.0 +height = 60.0 +thickness = 10.0 #Create a 3D box based bb = cadquery.Workplane("XY").box(length, height, thickness)