From a2fcee92556ec57c591845a70f0c0d1444085959 Mon Sep 17 00:00:00 2001 From: dakkar Date: Tue, 1 Nov 2022 12:30:47 +0000 Subject: the model --- pixel-clarus.scad | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pixel-clarus.scad (limited to 'pixel-clarus.scad') 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); +} -- cgit v1.2.3