summaryrefslogtreecommitdiff
path: root/pixel-clarus.scad
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2022-11-01 12:30:47 +0000
committerdakkar <dakkar@thenautilus.net>2022-11-01 12:42:55 +0000
commita2fcee92556ec57c591845a70f0c0d1444085959 (patch)
tree7fef957fc21027bbe75d421788b4c5d75f34a0c8 /pixel-clarus.scad
downloadpixel-clarus-master.tar.gz
pixel-clarus-master.tar.bz2
pixel-clarus-master.zip
the modelHEADmaster
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);
+}