forked from diara628/MCAD_old
-
Notifications
You must be signed in to change notification settings - Fork 54
/
gridbeam.scad
189 lines (149 loc) · 4.61 KB
/
gridbeam.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*********************************
* OpenSCAD GridBeam Library *
* (c) Timothy Schmidt 2013 *
* http://www.github.com/gridbeam *
* License: LGPL 2.1 or later *
*********************************/
/* Todo:
- implement "dxf" mode
- implement hole cutout pattern - interference based on hole size, compatible with two sizes above and below the currently set size.
*/
// zBeam(segments) - create a vertical gridbeam strut 'segments' long
// xBeam(segments) - create a horizontal gridbeam strut along the X axis
// yBeam(segments) - create a horizontal gridbeam strut along the Y axis
// zBolt(segments) - create a bolt 'segments' in length
// xBolt(segments)
// yBolt(segments)
// topShelf(width, depth, corners) - create a shelf suitable for use in gridbeam structures width and depth in 'segments', corners == 1 notches corners
// bottomShelf(width, depth, corners) - like topShelf, but aligns shelf to underside of beams
// backBoard(width, height, corners) - create a backing board suitable for use in gridbeam structures width and height in 'segments', corners == 1 notches corners
// frontBoard(width, height, corners) - like backBoard, but aligns board to front side of beams
// translateBeam([x, y, z]) - translate gridbeam struts or shelves in X, Y, or Z axes in units 'segments'
// To render the DXF file from the command line:
// openscad -x connector.dxf -D'mode="dxf"' connector.scad
mode = "model";
//mode = "dxf";
include <units.scad>
beam_width = inch * 1.5;
beam_hole_diameter = inch * 5/16;
beam_hole_radius = beam_hole_diameter / 2;
beam_is_hollow = 1;
beam_wall_thickness = inch * 1/8;
beam_shelf_thickness = inch * 1/4;
module zBeam(segments) {
if (mode == "model") {
difference() {
cube([beam_width, beam_width, beam_width * segments]);
for(i = [0 : segments - 1]) {
translate([beam_width / 2, beam_width + 1, beam_width * i + beam_width / 2])
rotate([90,0,0])
cylinder(r=beam_hole_radius, h=beam_width + 2);
translate([-1, beam_width / 2, beam_width * i + beam_width / 2])
rotate([0,90,0])
cylinder(r=beam_hole_radius, h=beam_width + 2);
}
if (beam_is_hollow == 1) {
translate([beam_wall_thickness, beam_wall_thickness, -1])
cube([beam_width - beam_wall_thickness * 2, beam_width - beam_wall_thickness * 2, beam_width * segments + 2]);
}
}
}
if (mode == "dxf") {
}
}
module xBeam(segments) {
if (mode == "model") {
translate([0,0,beam_width])
rotate([0,90,0])
zBeam(segments);
}
if (mode == "dxf") {
}
}
module yBeam(segments) {
if (mode == "model") {
translate([0,0,beam_width])
rotate([-90,0,0])
zBeam(segments);
}
if (mode == "dxf") {
}
}
module zBolt(segments) {
if (mode == "model") {
}
if (mode == "dxf") {
}
}
module xBolt(segments) {
if (mode == "model") {
}
if (mode == "dxf") {
}
}
module yBolt(segments) {
if (mode == "model") {
}
if (mode == "dxf") {
}
}
module translateBeam(v) {
for (i = [0 : $children - 1]) {
translate(v * beam_width) child(i);
}
}
module topShelf(width, depth, corners) {
if (mode == "model") {
difference() {
cube([width * beam_width, depth * beam_width, beam_shelf_thickness]);
if (corners == 1) {
translate([-1, -1, -1])
cube([beam_width + 2, beam_width + 2, beam_shelf_thickness + 2]);
translate([-1, (depth - 1) * beam_width, -1])
cube([beam_width + 2, beam_width + 2, beam_shelf_thickness + 2]);
translate([(width - 1) * beam_width, -1, -1])
cube([beam_width + 2, beam_width + 2, beam_shelf_thickness + 2]);
translate([(width - 1) * beam_width, (depth - 1) * beam_width, -1])
cube([beam_width + 2, beam_width + 2, beam_shelf_thickness + 2]);
}
}
}
if (mode == "dxf") {
}
}
module bottomShelf(width, depth, corners) {
if (mode == "model") {
translate([0,0,-beam_shelf_thickness])
topShelf(width, depth, corners);
}
if (mode == "dxf") {
}
}
module backBoard(width, height, corners) {
if (mode == "model") {
translate([beam_width, 0, 0])
difference() {
cube([beam_shelf_thickness, width * beam_width, height * beam_width]);
if (corners == 1) {
translate([-1, -1, -1])
cube([beam_shelf_thickness + 2, beam_width + 2, beam_width + 2]);
translate([-1, -1, (height - 1) * beam_width])
cube([beam_shelf_thickness + 2, beam_width + 2, beam_width + 2]);
translate([-1, (width - 1) * beam_width, -1])
cube([beam_shelf_thickness + 2, beam_width + 2, beam_width + 2]);
translate([-1, (width - 1) * beam_width, (height - 1) * beam_width])
cube([beam_shelf_thickness + 2, beam_width + 2, beam_width + 2]);
}
}
}
if (mode == "dxf") {
}
}
module frontBoard(width, height, corners) {
if (mode == "model") {
translate([-beam_width - beam_shelf_thickness, 0, 0])
backBoard(width, height, corners);
}
if (mode == "dxf") {
}
}