source: 2016/koodauskerho/VilleH/pacman.scad @ 8415

Revision 8402, 395 bytes checked in by jotapoti, 6 years ago (diff)
Line 
1
2difference(){
3sphere(15);
4    translate([15,0,0]){
5        rotate([0,45,0]){
6cube([20,30,20], true);
7        }
8    }
9}
10
11union(){
12    translate([4, -8, 10])sphere(4);
13    translate ([4, 8, 10])sphere(4);
14    difference(){
15        sphere(15);
16        translate([15,0,0]){
17            rotate([0,45,0]){
18                cube([20,30,20], true);
19            }
20        }
21    }
22}
Note: See TracBrowser for help on using the repository browser.