X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=nook-case.scad;h=ecbbbc22fd95bb31a86b9d391392bd3ef472142d;hb=b60ba8ab4b0f5e0de7a8932fd771bf647cfed298;hp=0789033178e2a35ff87ba924eb107411964cb604;hpb=286a053542353ea622fdafd41ddae443d2e95b00;p=reprap-play.git diff --git a/nook-case.scad b/nook-case.scad index 0789033..ecbbbc2 100644 --- a/nook-case.scad +++ b/nook-case.scad @@ -1,13 +1,16 @@ // -*- C -*- +// Infill density: 20% + +include include -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; +nook_th = 12.41 + 0.50 - 1.50 + 1.35 - .25; +nook_w = 127.12 + 0.75 - .95 - .50; +nook_h = 123.44 + 21.88 + 21.05 + 0.75 - 1.90 - 0.50 - 0.50; edge_ledge_w = 9.60; -edge_ledge_h = 2.44; +edge_ledge_h = 2.44 - .25; edge_ledge_inc_ang = 10; // degrees usb_w = 14.5; @@ -36,9 +39,11 @@ engage_l0 = 10; engage_l1 = 10; engage_l2 = 3; -tooth_inward = gap[0] * 1.0; +tooth_inward = gap[0] * 1.0 + 0.25 + 0.25; tooth_w = 15; +diag_near_hinge_slope = 0.5; + $test = false; $fa = $test ? 10 : 3; @@ -246,6 +251,22 @@ module FaceCore(z0,z1, extra_left, extra_right){ } } +module DiagonaliseNearHinge(wider){ + sz = spp0[1] - spp30[1] + gap[1]; + + for (my=[0,1]) mirror([0,my,0]) { + translate([-etxa, -nook_h/2, 0]) + mirror([1,0,0]) + linextr_y_xz(spp31[0] - wider, spp30[0] + gap[0] + 0.1) + translate([ 0, spp30[1] ]) + polygon([[ -1, 0 ], + [ 0, 0 ], + [ sz/diag_near_hinge_slope, sz ], + [ sz/diag_near_hinge_slope, sz + 0.1 ], + [ -1, sz + 0.1 ]]); + } +} + module Base(){ ////toplevel difference(){ FaceCore(spp7[1],spp8[1], 0.3, 0) { @@ -257,6 +278,8 @@ module Base(){ ////toplevel mirror([0,1,0]) linextr_x_yz(-usb_w/2, usb_w/2) rectfromto(spp8 + [-40, usb_below], [40, 40]); + translate([ gap[0], 0,0 ]) + DiagonaliseNearHinge(10); /* translate([nook_w/2, 0, 0]) linextr_y_xz(oprb, opra) @@ -264,6 +287,16 @@ module Base(){ ////toplevel rectfromto([-40, -open_recess_h], [40, 1]); */ } + if ($test) { + linextr(spp7[1], spp8[1]) { + hull(){ + for (r=[0,180]) + rotate([0,0,r]) + translate(nom_cnr + -1 * nook_cnr_rad*[1,1]) + square(12); + } + } + } } module Top(){ ////toplevel @@ -277,6 +310,8 @@ module Top(){ ////toplevel linextr_y_xz(opqb, opqa) rectfromto(spp8, tppC + [-1,1]); } + translate([0,0, gap[1]]) + DiagonaliseNearHinge(0); translate([nook_w/2, tooth_y, 0]) linextr_y_xz(-tooth_w/2, +tooth_w/2) ToothProfile();