chiark / gitweb /
digispark-with-cable: toplevels
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 19 Oct 2023 11:26:54 +0000 (12:26 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 26 Oct 2023 17:10:37 +0000 (18:10 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
digispark-with-cable.scad

index a6890fbd4fef0251dc38001b127781da8315db85..6edad92fccdbe3fc8927bf0fce3b33c480f939e2 100644 (file)
@@ -1,4 +1,10 @@
 // -*- C -*-
+//
+// Print (fine detail settings):
+//
+//   * Bottom
+//   * MiddlePrint
+//   * CoverPrint
 
 include <utils.scad>
 
@@ -200,6 +206,9 @@ module Middle(){ ////toplevel
       circle(strain_groove_w/2, $fn = 8);
   }
 }
+module MiddlePrint(){ ////toplevel
+  rotate([180,0,0]) Middle();
+}
 
 module MiddleElevationForCutout(){
     rectfromto([ -(middle_side_wall_x + side_x_gap), middle_base_z ],
@@ -261,6 +270,9 @@ module Cover(){ ////toplevel
     CoverStrapCutouts();
   }
 }
+module CoverPrint(){ ////toplevel
+  rotate([180,0,0]) Cover();
+}
 
 module BottomDemo(){ ////toplevel
   translate([0, 0, -0.25]) Bottom();