Err, actually, these were the wrong way round (!)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
StrapSectTop();
}
}
-module LeverBotInside(){ ////toplevel
+module LeverBotOutside(){ ////toplevel
SomeLever(){
LeverSectBot();
StrapSectBot();
}
}
-module LeverBotOutside(){ ////toplevel
+module LeverBotInside(){ ////toplevel
SomeLever(){
LeverSectBot(true);
StrapSectBot(true);
}
}
-module KitInside(){ ////toplevel
+module KitOutside(){ ////toplevel
translate([0,2,0]) LeverTop();
- LeverBotInside();
+ LeverBotOutside();
}
-module KitOutside(){ ////toplevel
+module KitInside(){ ////toplevel
translate([0,2,0]) LeverTop();
- LeverBotOutside();
+ LeverBotInside();
}
//LeverSectBot(true);
//LeverTop();
//Test();
//Kit();
-//KitOutside();
+//KitInside();