chiark / gitweb /
commitid: provide 2d demo
[reprap-play.git] / brompton-computer-guard.scad
index aaeaa7b68b9b05cb9a1d0ad98eae809907bc9b76..efb3a8a129bd7bdfac21ca94a86c19401c152cc3 100644 (file)
@@ -1,10 +1,17 @@
 // -*- C -*-
 
-arch_height = 24;
+arch_height = 18;
 arch_width = 75;
 end_width = 25;
 
-arch_thick = 5;
+arch_thick = 4;
+
+arch_breadth = 25;
+
+hole_dia = 4 + 0.5;
+
+pbase_tab = 12;
+pbase_thick = 2;
 
 // computed
 
@@ -14,33 +21,85 @@ echo(arch_alpha,arch_beta);
 arch_in_rad = arch_width/2 / sin(arch_beta);
 arch_to_chord = arch_in_rad * cos(arch_beta);
 
+inner_pbase_thick = 6;
+echo(inner_pbase_thick);
+
+inner_pbase_rad = arch_in_rad * 2;
+
 end_thick = arch_thick;
 
-//arch_to_chord = (arch_width/2)*(arch_width/2)/arch_height;
-//arch_in_rad = arch_to_chord + arch_height;
-//arch_in_rad2 = sqrt(arch_to_chord*arch_to_chord +
-//                 (arch_width/2)*(arch_width/2));
+holes = [[[  5  , 5  ], [16  , 21]], // left
+        [[ 18.5, 4.5], [ 4.5, 21]]]; // right
 
-//echo(arch_in_rad, arch_in_rad2);
+module ArchCircle(rad){
+  translate([0,-arch_to_chord])
+    circle(rad, $fa=0.1);
+}
 
-module ArchProfile(){
+module ArchProfile(pbase){
   intersection(){
     translate([-200,0])
       square([400,200]);
-    union(){
-      translate([0,-arch_to_chord]){
+    difference(){
+      union(){
+       ArchCircle(arch_in_rad + arch_thick);
+       for (m=[0,1])
+         mirror([m,0])
+           translate([arch_width/2,0])
+           multmatrix([[1,pbase ? -0.75 : 0,0,0],
+                       [0,1,0,0],
+                       [0,0,1,0],
+                       [0,0,0,1]])
+           square([end_width, pbase ? pbase_tab : end_thick]);
+      }
+    }
+  }
+}
+
+module Holes(){
+  for (m=[0,1]) {
+    mirror([1-m,0])
+      translate([arch_width/2, 50, 0])
+      rotate([90,0,0])
+      for (h=holes[m]) {
+       translate(h)
+         cylinder(r=hole_dia/2, h=100, $fn=20);
+      }
+  }
+}
+
+module MainCutout(){
+  ArchCircle(arch_in_rad);
+}
+
+module Arch(){
+  difference(){
+    rotate([0,0,180]){
+      linear_extrude(height=arch_breadth) {
        difference(){
-         circle(arch_in_rad + arch_thick, $fa=0.1);
-         circle(arch_in_rad, $fa=0.1);
+         ArchProfile(false);
+         MainCutout();
+       }
+      }
+      difference(){
+       linear_extrude(height=pbase_thick){
+         difference(){
+           hull(){
+             ArchProfile(true);
+             ArchProfile(false);
+           }
+           intersection(){
+             MainCutout();
+             translate([0, -inner_pbase_thick
+                        - (inner_pbase_rad - arch_in_rad)])
+               ArchCircle(inner_pbase_rad);
+           }
+         }
        }
       }
-      for (m=[0,1])
-       mirror([m,0])
-         translate([arch_width/2,0])
-         square([end_width, end_thick]);
     }
+    Holes();
   }
-  %square([arch_width/2,arch_height]);
 }
 
-ArchProfile();
+rotate([0,0,45]) Arch();