blob: c0b2ea2bce70a245643d23d99fcfef6db641d3f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module fudge_plus(l) {
union() {
hull() {
translate([-l*0.3,0,0]) sphere(l/10);
translate([l*0.3,0,0]) sphere(l/10);
}
hull() {
translate([0,-l*0.3,0]) sphere(l/10);
translate([0,l*0.3,0]) sphere(l/10);
}
}
}
module fudge_minus(l) {
hull() {
translate([0,-l*0.3,0]) sphere(l/10);
translate([0,l*0.3,0]) sphere(l/10);
}
}
|