author | Michael Krelin <hacker@klever.net> | 2018-07-31 19:27:20 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-31 19:27:20 (UTC) |
commit | d9b12712aad96c583cc10406f00b0383eb7b7ab2 (patch) (side-by-side diff) | |
tree | 2c472e03e72d0ed48d9a528d1dcfa25e22d0d1a8 | |
parent | 5752d03e9b6750447faaa5174bab1e797e4e3f2f (diff) | |
download | extrudery-d9b12712aad96c583cc10406f00b0383eb7b7ab2.zip extrudery-d9b12712aad96c583cc10406f00b0383eb7b7ab2.tar.gz extrudery-d9b12712aad96c583cc10406f00b0383eb7b7ab2.tar.bz2 |
pushfit_data: added named pushfits map
-rw-r--r-- | pushfit_data.scad | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pushfit_data.scad b/pushfit_data.scad index c0ce3d0..c385088 100644 --- a/pushfit_data.scad +++ b/pushfit_data.scad @@ -5,17 +5,21 @@ pushfit_embeddest = [ ["type", "embeddest"], ["h_legspace", 3.2], // the height of legspace ["ch", 1] // inlet chamfer ]; pushfit_embedded = [ ["type", "embedded"], ["d", 12], // outer diameter ["h", 7 ], // total height ["h_ring", 4.7], // height of embedded pushfit ring ["d_insert", 8], // diameter of pushfit insert legs hole ]; pushfit_threaded = [ ["type", "threaded"], ["h", 10], // total height ["d", 25.4*3/8 ], // the diameter to return ["d_tolerance", 0.5], // the diameter tolerance ["tpi", 28] // threads per inch ]; - +stock_pushfits = [ + ["threaded", pushfit_threaded], + ["embedded", pushfit_embedded], + ["embeddest", pushfit_embeddest] +]; |