Howto make holes in cubes with openscad / for-loop?
stackoverflow.com › questions › 65445132Dec 25, 2020 · Howto make holes in cubes with openscad / for-loop? I want to make a hole in each of these cubes. Here is the code: y=45; for (i= [1:8]) { z = y*i; difference () { rotate ( [0,0,z]) translate ( [57,0,-5]) cube (center = true, [5,10,10]); rotate ( [90,90,z]) translate ( [6,0,-60]) cylinder (5,2,2); } } // This is a reference, translate ( [6,0 ...