forked from SolidCode/MCAD
-
Notifications
You must be signed in to change notification settings - Fork 193
/
boxes.scad
46 lines (42 loc) · 1.58 KB
/
boxes.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
// Library: boxes.scad
// Version: 1.0
// Author: Marius Kintel
// Copyright: 2010
// License: 2-clause BSD License (http://opensource.org/licenses/BSD-2-Clause)
//
// roundedCube([x, y, z], r, sidesonly=true/false, center=true/false);
// roundedCube(x, r, sidesonly=true/false, center=true/false);
// EXAMPLE USAGE:
// roundedCube([20, 30, 40], 5, true, true);
// Only for backwards compatibility with existing scripts, (always centered, radius instead of consistent "r" naming.
module roundedBox(size, radius, sidesonly)
{
echo("WARNING: roundedBox(size, radius, sidesonly) is deprecated, use roundedCube(size, r, sidesonly, center)");
roundedCube(size, radius, sidesonly, true);
}
// New implementation
module roundedCube(size, r, sidesonly, center) {
s = is_list(size) ? size : [size,size,size];
translate(center ? -s/2 : [0,0,0]) {
if (sidesonly) {
hull() {
translate([ r, r]) cylinder(r=r, h=s[2]);
translate([ r,s[1]-r]) cylinder(r=r, h=s[2]);
translate([s[0]-r, r]) cylinder(r=r, h=s[2]);
translate([s[0]-r,s[1]-r]) cylinder(r=r, h=s[2]);
}
}
else {
hull() {
translate([ r, r, r]) sphere(r=r);
translate([ r, r,s[2]-r]) sphere(r=r);
translate([ r,s[1]-r, r]) sphere(r=r);
translate([ r,s[1]-r,s[2]-r]) sphere(r=r);
translate([s[0]-r, r, r]) sphere(r=r);
translate([s[0]-r, r,s[2]-r]) sphere(r=r);
translate([s[0]-r,s[1]-r, r]) sphere(r=r);
translate([s[0]-r,s[1]-r,s[2]-r]) sphere(r=r);
}
}
}
}