summaryrefslogtreecommitdiff
path: root/pixel-clarus.scad
blob: eff74121dd773c7bb45eb991ec6493ffc3ab764c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
}