X-Git-Url: http://git.hcoop.net/clinton/3d-models.git/blobdiff_plain/851a9f51f870c2e7cf7014e1fbde38111e8bfc85..208de0a63e7934ed143bfd93045c1ed3d45b2936:/calibration/walls.scad diff --git a/calibration/walls.scad b/calibration/walls.scad index 04078f9..9f07734 100644 --- a/calibration/walls.scad +++ b/calibration/walls.scad @@ -1,13 +1,15 @@ // empty cube to test ninjaflex inner/outer wall adhesion nozzle_diameter = 0.5; -d = 30; -h = 20; -wall = nozzle_diameter*4; +d = 20; +h = 10; + +wall = nozzle_diameter*2; +base = 1; + difference () { cube ([d, d, h], center=true); - // intentionally thin floor - translate ([0, 0, wall/2]) #cube ([d-wall, d-wall, h+0.01], center=true); + translate ([0, 0, base]) #cube ([d-wall*2, d-wall*2, h+0.01], center=true); }