author | Michael Krelin <hacker@klever.net> | 2016-01-13 20:44:23 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-01-13 20:44:23 (UTC) |
commit | ba0d2b52cac7c0ff12fcefb41211177e31963cdc (patch) (side-by-side diff) | |
tree | 959db70d5c0e00488c3e9d96d6737b6f0674b65f | |
parent | 4463cba1eed4a59d4eba588389a169481798a73c (diff) | |
download | redelta-ba0d2b52cac7c0ff12fcefb41211177e31963cdc.zip redelta-ba0d2b52cac7c0ff12fcefb41211177e31963cdc.tar.gz redelta-ba0d2b52cac7c0ff12fcefb41211177e31963cdc.tar.bz2 |
comments
-rw-r--r-- | delta.jscad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/delta.jscad b/delta.jscad index 0e8fd62..326d172 100644 --- a/delta.jscad +++ b/delta.jscad @@ -792,29 +792,29 @@ function bedholder(params) { radius: CONFIG.bedholder.bolt.d/2+PRINT.screw_tolerance/2 }), CSG.cube({ // nut pocket center: [0,-CONFIG.heatbed.sr,nuth], radius: [CONFIG.extrusion.w/2+1,(CONFIG.bedholder.nut.w+PRINT.slide_tolerance)/2,(CONFIG.bedholder.nut.h+PRINT.slide_tolerance)/2] }), CSG.cylinder({ // sink base screw start: [0,-CD.base.mid_inscription_r,h0+bolt_s], end: [0,-CD.base.mid_inscription_r,h0+CONFIG.bedholder.h+1], radius: CONFIG.bedholder.bolt.head.d/2+PRINT.play_tolerance }) ]); - rv = rv.union(CSG.cylinder({ + rv = rv.union(CSG.cylinder({ // patch up for bridging start: [0,-CONFIG.heatbed.sr,nutth], end: [0,-CONFIG.heatbed.sr,nutth+PRINT.layer_height], radius: (CONFIG.bedholder.nut.w+PRINT.slide_tolerance)/2+PRINT.extrusion_width })); - rv = rv.intersect(CSG.cylinder({ + rv = rv.intersect(CSG.cylinder({ // cut off excess start: [0,0,h0-1], end: [0,0,h0+CONFIG.bedholder.h+1], radius: CONFIG.heatbed.r, resolution: 270 })); rv.properties.P = new CSG.Connector([0,-CD.base.mid_inscription_r,h0],[0,0,1],[1,0,0]); return rv.setColor(CONFIG.color.parts); } var PARTS = { wip: function(params) { return duetholder(params); return PARTS.alltogethernow(params); return base_extrusions(); |