intersectionForLoopEx1.scad 121 B

12345678
  1. intersection_for(n = [1 : 6])
  2. {
  3. rotate([0, 0, n * 60])
  4. {
  5. translate([5,0,0])
  6. sphere(r=12);
  7. }
  8. }