-
Notifications
You must be signed in to change notification settings - Fork 171
/
rail_y_endcap_parts.scad
66 lines (50 loc) · 1.68 KB
/
rail_y_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
include <config.scad>
use <GDMUtils.scad>
use <joiners.scad>
module rail_y_endcap()
{
joiner_length=25;
base_height = rail_height+groove_height;
color("YellowGreen")
prerender(convexity=10)
union() {
difference() {
union() {
// Bottom.
translate([0, -joiner_length/2, rail_thick/2])
cube(size=[rail_width, joiner_length, rail_thick], center=true);
// Back.
translate([0, -joiner_length+rail_thick/2, base_height/2]) zrot(90) {
if (wall_style == "crossbeams")
sparse_strut(h=base_height, l=rail_width-2*5, thick=rail_thick, strut=5);
if (wall_style == "thinwall")
thinning_wall(h=base_height, l=rail_width-joiner_width, thick=rail_thick, strut=joiner_width);
if (wall_style == "corrugated")
corrugated_wall(h=base_height, l=rail_width, thick=rail_thick, strut=joiner_width);
}
// Corner pieces.
up(base_height-groove_height/2-0.01) {
fwd(joiner_length/2) {
xspread(rail_spacing+joiner_width) {
cube(size=[joiner_width, joiner_length, groove_height+0.01], center=true);
}
}
}
}
// Clear space for joiners.
translate([0, 0, base_height/2-(base_height-rail_height)/2-0.05]) {
joiner_pair_clear(spacing=rail_spacing+joiner_width, h=rail_height, w=joiner_width, a=joiner_angle, clearance=5);
}
}
// Joiner clips.
translate([0, 0, base_height/2-(base_height-rail_height)/2]) {
joiner_pair(spacing=rail_spacing+joiner_width, h=rail_height, w=joiner_width, l=joiner_length, a=joiner_angle);
}
}
}
//!rail_y_endcap();
module rail_y_endcap_parts() { // make me
zrot(-90) rail_y_endcap();
}
rail_y_endcap_parts();
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap