79383449

Date: 2025-01-24 06:44:37
Score: 1.5
Natty:
Report link

The Intersection_For_Loop is geared specifically for constructing intersections of polyhedra created inside a loop. `

$fn=30;
intersection_for(i=[0:1]){

    translate([0, 0, 0.8 * i])
    sphere(r = 1);
    
}

` lentil bean primitive made from two intersecting spheres

Confusingly, wrapping a for loop in an intersection creates a union.

$fn=30;
intersection(){
    for(i=[0:1]){
        translate([0, 0, 0.8 * i])
        sphere(r = 1);
    }
}

Ribosomal shape created with a union of two spheres

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gigagram