last few months of work
[mirrors/Designs.git] / cnc / 3D / 3Dbabe / cutbabe.scad
diff --git a/cnc/3D/3Dbabe/cutbabe.scad b/cnc/3D/3Dbabe/cutbabe.scad
new file mode 100644 (file)
index 0000000..5ace4df
--- /dev/null
@@ -0,0 +1,12 @@
+module babe(a=0) {
+rotate([5,a*180,0]) scale(11) translate([0,-9,0.65]) rotate([-90,0,0]) import("PrintBabe-PrintBabe2-Standing__.stl");
+}
+
+module cutcube(a=10) {
+    translate([0,0,a/2]) cube([100,100,a], center=true);
+    }
+
+intersection() {
+babe();
+cutcube(20);
+}
\ No newline at end of file
This page took 0.137409 seconds and 4 git commands to generate.