chiark / gitweb /
maglite-holder: nice shape...
[reprap-play.git] / maglite-holder.scad
index 233d851621ee8bc96d449f877f835fd653f9dc68..2210c9c4c5532a29caa7f59ead2e2f39db47cb75 100644 (file)
@@ -7,7 +7,33 @@ torch_big_dia = 56.5;
 torch_tot_len = 256;
 torch_big_len = 60;
 
-$fa=5;
+torch_clear = 30;
+torch_clear_below = 10;
+
+stem_width = 20;
+stem_thick = 4;
+
+torch_recess = 10;
+arm_width = 10;
+block_thick = 30;
+
+//$fa=5;
+
+// calculated
+
+above = torch_big_len + torch_clear + torch_clear_below;
+
+holes = [ 172, 265 ];
+
+stem_below = stem_width/2;
+
+stem_len = holes[1] - above + stem_below;
+
+torch_out = stem_thick + torch_big_dia/2;
+
+block_width = arm_width*2 + torch_big_dia;
+
+block_out = torch_out + torch_big_dia/sqrt(2);
 
 module Torch(){
   mirror([0,0,1]){
@@ -22,4 +48,35 @@ module Torch(){
   }
 }
 
-Torch();
+module TorchMovement(){
+  translate([0, -torch_out, 0]) {
+    translate([0, 0, -torch_recess])
+      Torch();
+    rotate([90,0,0])
+      linear_extrude(height= block_out)
+      projection() rotate([-90,0,0]) Torch();
+  }
+}
+
+module Bracket(){
+  difference(){
+    mirror([0,1,0])
+      translate([-stem_width/2, 0, -stem_len])
+      cube([stem_width, stem_thick, stem_len]);
+  }
+  difference(){
+    mirror([0,1,0])
+      translate([-block_width/2, 0, -block_thick])
+      cube([block_width, block_out, block_thick]);
+    TorchMovement();
+  }
+}
+
+module Demo(){
+  translate([0, -torch_out, 0])
+    %Torch();
+  Bracket();
+}
+
+Demo();
+