forked from revarbat/snappy-reprap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrail_z_endcap_parts.scad
100 lines (83 loc) · 2.75 KB
/
rail_z_endcap_parts.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
include <config.scad>
use <GDMUtils.scad>
use <joiners.scad>
module rail_z_endcap()
{
joiner_length = 55;
w = z_joiner_spacing + joiner_width;
l = rail_height;
color("YellowGreen")
prerender(convexity=10)
union() {
difference() {
union() {
// Bottom.
translate([0, -l/2, rail_thick/2])
cube(size=[w, l, rail_thick], center=true);
// Back.
translate([0, -l+joiner_width/2, rail_height/2]) zrot(90) {
if (wall_style == "crossbeams")
sparse_strut(h=rail_height, l=w-0.1, thick=joiner_width, strut=5);
if (wall_style == "thinwall")
thinning_wall(h=rail_height, l=w-0.1, thick=joiner_width, strut=5);
if (wall_style == "corrugated")
corrugated_wall(h=rail_height, l=w-0.1, thick=joiner_width, strut=5);
}
// Endstop clip
fwd((endstop_depth+2)/2) {
left((z_joiner_spacing-joiner_width-endstop_thick-2+0.05)/2-5) {
up(rail_height-(endstop_length+2*2)/2) {
difference() {
left(5/2) cube([endstop_thick+2+5, endstop_depth+2, endstop_length+2*2], center=true);
left(2/2) back(2/2) {
cube([endstop_thick+2*printer_slop+0.05, endstop_depth+0.05, endstop_length+2*printer_slop], center=true);
cube([endstop_thick+2*printer_slop-2, endstop_depth+10, endstop_length+2*printer_slop-1], center=true);
}
}
down(endstop_length/2+2+endstop_thick*2/2+5/2-0.05) {
left((endstop_thick+2)/2+5) {
right_half() trapezoid([0.05, 0.05], [2*(endstop_thick+2+5), endstop_depth+2], h=endstop_thick*2+5, center=true);
}
}
zspread(endstop_hole_spacing) {
right(endstop_thick/2-1.5/2+0.05) {
back(endstop_depth/2+2/2-endstop_hole_inset) {
scale([0.5, 1, 1]) {
sphere(d=endstop_screw_size, center=true, $fn=8);
}
}
}
}
}
}
}
}
// Clear space for joiners.
up(rail_height/2-0.05) {
joiner_pair_clear(spacing=z_joiner_spacing, h=rail_height, w=joiner_width, a=joiner_angle, clearance=1);
}
}
// Joiner clips.
up(rail_height/2) {
xspread(z_joiner_spacing) {
joiner(h=rail_height, w=joiner_width, l=l-5/2, a=joiner_angle);
fwd(l+10) zrot(180) yrot(180) joiner(h=rail_height, w=joiner_width, l=13, a=joiner_angle);
}
}
// Top joiner clips
up(platform_length) {
fwd(l-joiner_width/2) {
difference() {
zrot(90) xrot(90) joiner(h=rail_height, w=joiner_width, l=platform_length-rail_height+1, a=joiner_angle);
down(platform_length/2+10) cube([rail_height/2, joiner_width+1, platform_length], center=true);
}
}
}
}
}
//!rail_z_endcap();
module rail_z_endcap_parts() { // make me
zrot(-90) rail_z_endcap();
}
rail_z_endcap_parts();
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap