diff options
author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-06-22 14:57:53 +0200 |
---|---|---|
committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-06-22 14:57:53 +0200 |
commit | 1bfb049f9cdd10e81d7c4b360ad49a6706c715e7 (patch) | |
tree | e152734da304acab92ba2d0183e3652aaa4928fc /lib | |
parent | 80c4cebaccd949c88a07cea49c0f95d4f743846a (diff) |
Fudge die: migrated to new layout / lib
Diffstat (limited to 'lib')
-rw-r--r-- | lib/faces/fudge.scad | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/faces/fudge.scad b/lib/faces/fudge.scad new file mode 100644 index 0000000..c0b2ea2 --- /dev/null +++ b/lib/faces/fudge.scad @@ -0,0 +1,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); + } +} |