chiark / gitweb /
shelf-label-holder: Main instead. Test reveals Print does not work due to "flashing...
[reprap-play.git] / shelf-label-holder.scad
index 1d05b2b54906ccf21e461048f8c6a63708d8c83e..e959146c4c32056dcde149c82322e095809ef195 100644 (file)
@@ -11,6 +11,8 @@ nom_shelf = 14.54;
 
 interference = 0.25;
 
+length = 60;
+
 // calculated
 
 interference_angle = atan2(interference, prong_nomdepth);
@@ -46,5 +48,17 @@ module Elevation(){
   }
 }
 
+module Main(){
+  linear_extrude(height=length)
+    Elevation();
+}
+
+module Print(){
+  rotate([0,-90,0])
+    Main();
+}
+
 //ProngElevationUnrotated();
-Elevation();
+//Elevation();
+Main();
+//Print();