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