chiark / gitweb /
nook-case: edge ledge profile
[reprap-play.git] / nook-case.scad
index fadf7b40e0ac26b4ff3bca98b26ed2b0df865e6d..83c6f252ea4bb06ae6518f034c2da15b557a7dad 100644 (file)
@@ -2,12 +2,16 @@
 
 include <utils.scad>
 
-nook_th = 12.41 + 0.50;
-nook_w = 127.12 + 0.75;
-nook_h = 123.44 + 21.88 + 21.05 + 0.75;
+nook_th = 12.41 + 0.50 - 1.50;
+nook_w = 127.12 + 0.75 - .95;
+nook_h = 123.44 + 21.88 + 21.05 + 0.75 - 1.90;
 
-usb_w = 12.5;
-usb_below = 2.5;
+edge_ledge_w = 9.60;
+edge_ledge_h = 2.44;
+edge_ledge_inc_ang = 10; // degrees
+
+usb_w = 14.5;
+usb_below = 1.5;
 
 open_recess_w = 12.5;
 open_recess_h = 2.5;
@@ -92,6 +96,8 @@ tppQ = tppP + tooth_height * [0,-1] + tooth_inward * [1,0];
 tppR = [ tppS[0] + tooth_inward, tppQ[1] ];
 tppM = (tppQ + tppR) * 0.5 + tooth_th * 0.5 * [0,1];
 
+edge_ledge_rad = edge_ledge_h;
+
 module RightSideMainProfile() {
   rectfromto(spp7, spp0);
   rectfromto(spp7, spp20);
@@ -102,6 +108,23 @@ module LeftSideMainProfile() {
   rectfromto(spp7, spp20);
 }
 
+module EdgeLedgeProfile() {
+  intersection(){
+    hull(){
+      for (t=[[0,0], [-20,0], [0,-10]]) {
+       translate(spp8
+                 + [edge_ledge_w, edge_ledge_h]
+                 + edge_ledge_rad * [ -sin(edge_ledge_inc_ang),
+                                      -cos(edge_ledge_inc_ang) ]
+                 + t)
+         circle(edge_ledge_rad);
+      }
+    }
+    translate(spp7)
+      square(30);
+  }
+}
+
 module TopTapeCutout() {
   polygon([ tppA,
            tppA + [-40, 0],
@@ -149,11 +172,19 @@ module ToothProfile(){
 }
 
 module Demo(){ ////toplevel
-  translate([0,0,-2]) LeftSideMainProfile(); 
-  translate([0,0,-2]) color("yellow") LeftTopMainProfile();
-  color("red") difference(){
-    LeftSideMainProfile();
-    SideTapeCutout();
+  translate([-1,0,0]) {
+    translate([0,0,-2]) LeftSideMainProfile(); 
+    translate([0,0,-2]) color("yellow") LeftTopMainProfile();
+    color("red") difference(){
+      LeftSideMainProfile();
+      SideTapeCutout();
+    }
+    translate([0,0,-4]) color("brown") EdgeLedgeProfile();
+    translate(concat(spp8 + [edge_ledge_w, edge_ledge_h], [2]))
+      rotate(-edge_ledge_inc_ang) {
+      color("blue") square(3);
+      color("lightblue") mirror([1,0]) square(3);
+    }
   }
   translate([0,0,0]) color("purple") difference(){
     LeftTopMainProfile();
@@ -213,10 +244,12 @@ module Base(){ ////toplevel
       mirror([0,1,0])
       linextr_x_yz(-usb_w/2, usb_w/2)
       rectfromto(spp8 + [-40, usb_below], [40, 40]);
+/*
     translate([nook_w/2, 0, 0])
       linextr_y_xz(oprb, opra)
       translate(spp0)
       rectfromto([-40, -open_recess_h], [40, 1]);
+*/
   }
 }
 
@@ -231,6 +264,12 @@ module Top(){ ////toplevel
     mirror([1,0])
     ToothProfile();
 }
+module TopPrint(){ ////toplevel
+  rotate([0,0,90]) rotate([180,0,0]) Top();
+}
+module BasePrint(){ ////toplevel
+  rotate([0,0,90]) Base();
+}
 
 module TestExtrude(){
   difference(){
@@ -239,6 +278,10 @@ module TestExtrude(){
   }
 }
 
+module BaseTestRest(){ ////toplevel
+  cube([30,15, spp8[1]-spp7[1]]);
+}
+
 module Demo3(){ ////toplevel
   color("purple") Top();
   color("red") Base();