-
Notifications
You must be signed in to change notification settings - Fork 0
/
brother-spool-holder-catherine.scad
80 lines (70 loc) · 1.84 KB
/
brother-spool-holder-catherine.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
include <BOSL/constants.scad>
use <BOSL/transforms.scad>
use <BOSL/shapes.scad>
// Tolérance pour les ajustements
tolerance = .5;
diff_tolerance = .1;
// Diamètre du pin
brother_pin_diameter = 6 + tolerance;
// Hauteur du pin quand il est ouvert
brother_pin_height = 52 + tolerance;
// Hauteur du pin quand il est fermé
brother_pin_height_closed = 11.5 + tolerance;
// Diamètre de la base du pin
brother_pin_base_diameter = 14 + tolerance;
// Hauteur de la base du pin
brother_pin_base_height = 1.5;
// Espace entre le pin et le dévidoir à canette
// Le socle ne doit pas dépasser ce rayon pour ne pas gêner le dévidoir
brother_socle_max_radius = 40;
// Diamètre du socle
socle_diameter = 60;
// Epaisseur du socle
socle_thickness = 2;
// Diamètre du support (diamètre intérieur d'une bobine au plus large)
support_diameter_start = 16 - tolerance;
// Diamètre du support (diamètre intérieur d'une bobine au plus étroit)
support_diameter_end = 16 - tolerance;
// Hauteur du support
support_height = 70 - tolerance;
module pin(opened = true) {
color("red") {
cyl(
h = brother_pin_base_height,
d = brother_pin_base_diameter,
orient=ORIENT_Z,
align=ALIGN_POS
);
up(brother_pin_base_height - diff_tolerance) {
cyl(
h = opened ? brother_pin_height : brother_pin_height_closed,
d = brother_pin_diameter,
fillet2 = .5,
orient=ORIENT_Z,
align=ALIGN_POS
);
}
}
}
module support() {
color("yellow") {
cyl(
h = socle_thickness,
d = socle_diameter,
orient=ORIENT_Z,
align=ALIGN_POS
);
cyl(
h = support_height,
d1 = support_diameter_start,
d2 = support_diameter_end,
fillet2 = 5,
orient=ORIENT_Z,
align=ALIGN_POS
);
}
}
difference() {
support();
down(diff_tolerance) pin(opened = true);
}