diff options
author | dakkar <dakkar@thenautilus.net> | 2022-11-01 12:30:47 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2022-11-01 12:42:55 +0000 |
commit | a2fcee92556ec57c591845a70f0c0d1444085959 (patch) | |
tree | 7fef957fc21027bbe75d421788b4c5d75f34a0c8 | |
download | pixel-clarus-a2fcee92556ec57c591845a70f0c0d1444085959.tar.gz pixel-clarus-a2fcee92556ec57c591845a70f0c0d1444085959.tar.bz2 pixel-clarus-a2fcee92556ec57c591845a70f0c0d1444085959.zip |
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | DogCow_from_LaserWriter_8.png | bin | 0 -> 319 bytes | |||
-rw-r--r-- | LICENSE | 1 | ||||
-rw-r--r-- | background.png | bin | 0 -> 8669 bytes | |||
-rw-r--r-- | pixel-clarus.3mf | bin | 0 -> 235526 bytes | |||
-rw-r--r-- | pixel-clarus.scad | 29 |
6 files changed, 34 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d74c0f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.xcf +*.gcode +*~ +*.stl diff --git a/DogCow_from_LaserWriter_8.png b/DogCow_from_LaserWriter_8.png Binary files differnew file mode 100644 index 0000000..f730c83 --- /dev/null +++ b/DogCow_from_LaserWriter_8.png @@ -0,0 +1 @@ +This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
\ No newline at end of file diff --git a/background.png b/background.png Binary files differnew file mode 100644 index 0000000..a64e26f --- /dev/null +++ b/background.png diff --git a/pixel-clarus.3mf b/pixel-clarus.3mf Binary files differnew file mode 100644 index 0000000..ad03226 --- /dev/null +++ b/pixel-clarus.3mf 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); +} |