summaryrefslogtreecommitdiff
path: root/pixel-clarus.scad
diff options
context:
space:
mode:
Diffstat (limited to 'pixel-clarus.scad')
-rw-r--r--pixel-clarus.scad29
1 files changed, 29 insertions, 0 deletions
diff --git a/pixel-clarus.scad b/pixel-clarus.scad
new file mode 100644
index 0000000..eff7412
--- /dev/null
+++ b/pixel-clarus.scad
@@ -0,0 +1,29 @@
+difference() {
+
+ scale(123/110) union() {
+ color("black") intersection() {
+ translate([0,0,45])
+ surface(
+ file="DogCow_from_LaserWriter_8.png",
+ center=true,
+ convexity=10,
+ invert=true
+ );
+ cube([250,150,5],center=true);
+ };
+
+ color("white") translate([0,0,-3]) intersection() {
+ translate([0,0,-30])
+ surface(
+ file="background.png",
+ center=true,
+ convexity=10
+ );
+ cube([250,150,2],center=true);
+ };
+ };
+
+ // holes in the feet
+ translate([-45,-69,-8]) cylinder(d=3,h=10,$fn=20);
+ translate([58,-69,-8]) cylinder(d=3,h=10,$fn=20);
+}