openscad/testdata/scad/features/for-nested-tests.scad

4 lines
78 B
OpenSCAD
Raw Normal View History

2011-09-05 18:38:50 +04:00
for(x=[0:3], y=[0:0.5:1], z=[0,2,3]) {
translate(10*[x,y,z]) sphere(r=3);
}