author | Michael Krelin <hacker@klever.net> | 2016-01-06 23:46:31 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-01-06 23:46:31 (UTC) |
commit | 4cb92354224641376d311adc7589ebb4bdc5639d (patch) (side-by-side diff) | |
tree | f6d856a472a52f1af9a34803f72b305f955524e5 /delta.jscad | |
parent | 8cd03b0c3f807d552a6721886a3af0af8b592a1c (diff) | |
download | redelta-4cb92354224641376d311adc7589ebb4bdc5639d.zip redelta-4cb92354224641376d311adc7589ebb4bdc5639d.tar.gz redelta-4cb92354224641376d311adc7589ebb4bdc5639d.tar.bz2 |
duet()
-rw-r--r-- | delta.jscad | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/delta.jscad b/delta.jscad index 043f6f8..b3bb3d3 100644 --- a/delta.jscad +++ b/delta.jscad @@ -559,2 +559,29 @@ function column_extrusions() { +function duet() { + var C = CONFIG.duet; + var pholes = new CSG.Properties(); + var hx = C.hole_spacing.x/2; + var hy = C.hole_spacing.y/2; + var hh = { nw: [1,-1], ne: [1,1], se: [-1,1], sw: [-1,-1] }; + var holes = []; + for(w in hh) { + var h = hh[w],_x=h[0]*hx,_y=h[1]*hy; + holes.push(CSG.cylinder({start:[_x,_y,-1],end:[_x,_y,C.pcb_size.z+1],radius:3/2})); + pholes['c_'+w] = new CSG.Connector([_x,_y,0],[0,0,1],[1,0,0]); + } + rv = CSG.cube({ + corner1: [-C.pcb_size.x/2, -C.pcb_size.y/2, 0], + corner2: [ C.pcb_size.x/2, C.pcb_size.y/2, C.pcb_size.z] + }).subtract(holes).setColor(CONFIG.color.pcb).union( + CSG.cube({ + corner1: [-C.pcb_size.x/2,-C.hole_spacing.y/2+3,C.pcb_size.z], + corner2: [ C.pcb_size.x/2, C.hole_spacing.y/2-3,C.h] + }).setColor(CONFIG.color.bulk) + ); + rv.properties.holes = pholes; + rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); + rv.properties.vitamin = true; + return rv; +} + function refaxes(o) { |