chiark / gitweb /
some notes on how to print
[reprap-play.git] / light-bracket.scad
index 3e17f81ddb2e9d120d9bafabf0eb3aabefcc3652..9bbf3419fc6a6aa772d62ec9d2a74545e2f10682 100644 (file)
@@ -124,7 +124,7 @@ module bracket() {
        // this is the actual thing we want
        difference() {
                stuff();
-               %mainhole();
+               mainhole();
                for (y=screw_ys) translate([0, y, 0])   
                        screwhole(5.4,10); //dia=4 gives 2.9
                                         //holedia=10 gives 9.0 want 7.0
@@ -134,6 +134,6 @@ module bracket() {
 }
 
 intersection() {
-       !bracket();
+       bracket();
        cube(center=true, [100,70,100]);
 }