summaryrefslogtreecommitdiff
path: root/multiswitch-c8r.scad
authorMichael Krelin <hacker@klever.net>2018-07-31 19:54:10 (UTC)
committer Michael Krelin <hacker@klever.net>2018-07-31 19:54:23 (UTC)
commit4b1f3dfe12ef5357fa28caa2c5265c88bd51a864 (patch) (unidiff)
tree89f421de78a5d258e1b06d7cddccf50eef18b571 /multiswitch-c8r.scad
parente25427a293ea1f3cbf2e1f90562fb76d8c5632ba (diff)
downloadextrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.zip
extrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.tar.gz
extrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.tar.bz2
preprocess multiswitch for customizer.
no, this is not seriously useful preprocessor, but works for this case. real men don't use customizer anyway.
Diffstat (limited to 'multiswitch-c8r.scad') (more/less context) (ignore whitespace changes)
-rw-r--r--multiswitch-c8r.scad25
1 files changed, 25 insertions, 0 deletions
diff --git a/multiswitch-c8r.scad b/multiswitch-c8r.scad
new file mode 100644
index 0000000..a6a5dbb
--- a/dev/null
+++ b/multiswitch-c8r.scad
@@ -0,0 +1,25 @@
1
2// Well, you can go higher, but that would probably be ridiculous
3number_of_inputs = 4; // [2,3,4,5,6];
4// Pushfit types are e3d threaded pusfit, e3d embedded and printed ring with only the collet put into it. Note, that rendering 4 threaded pushfit sockets borders with impossible, and it's too big, anyway.
5pushfit_type = "embeddest"; // ["threaded","embedded","embeddest"]
6join_angle = 15;
7
8// Outer diameter of PTFE liner
9liner_outer_diameter = 4;
10// Inner diameter of PTFE liner and the diameter of printed filament channel
11liner_inner_diameter = 2;
12
13module customizer_multiswitch() {
14 multiswitch(
15 liner_od = liner_outer_diameter,
16 liner_id = liner_inner_diameter,
17 angle = join_angle,
18 inputs = number_of_inputs,
19 pf = pf_byname(stock_pushfits,pushfit_type),
20 draft = false,
21 print = true,
22 debug = 0
23 );
24}
25customizer_multiswitch();