openscad/examples/Advanced/advance_intersection.scad

14 lines
397 B
OpenSCAD
Raw Normal View History

echo(version=version());
2014-05-03 22:24:07 +04:00
intersection()
{
linear_extrude(height = 100, center = true, convexity= 3)
2014-04-05 21:55:36 +04:00
import(file = "advance_intersection.dxf");
2014-05-03 22:24:07 +04:00
rotate([0, 90, 0])
linear_extrude(height = 100, center = true, convexity= 3)
2014-04-05 21:55:36 +04:00
import(file = "advance_intersection.dxf");
2014-05-03 22:24:07 +04:00
rotate([90, 0, 0])
linear_extrude(height = 100, center = true, convexity= 3)
2014-04-05 21:55:36 +04:00
import(file = "advance_intersection.dxf");
}