last few months of work
[mirrors/Designs.git] / cnc / 3D / 3Dbabe / cutbabe.scad
CommitLineData
c23cf911
TM
1module babe(a=0) {
2rotate([5,a*180,0]) scale(11) translate([0,-9,0.65]) rotate([-90,0,0]) import("PrintBabe-PrintBabe2-Standing__.stl");
3}
4
5module cutcube(a=10) {
6 translate([0,0,a/2]) cube([100,100,a], center=true);
7 }
8
9intersection() {
10babe();
11cutcube(20);
12}
This page took 0.139582 seconds and 4 git commands to generate.