// "%object()" makes transparent and does NOT APEAR in the final compile // "#object()" makes transparent red and APEAR in the final compile //Facet Number $fn=25; //CUBE cube([10,10,10]);//three values([distance from origin for each axis]) //SPHERE %sphere(10); //only one value (radius) //CYLINDER cylinder(r1=5,r2=5,h=20);//three values (r1=bottom radius, r2=top radius, h=height) //TRANSLATE (move the origin) translate([11,0,0]) #cube([10,10,10]);//three values ([one for each axis]) //ROTATE rotate(a=90, v=[1,0,0]) cylinder(r1=5,r2=5,h=20);//two values (a=angle v=[axis where you aply rotation]) //for() LOOP (interate) for(i = [0:10:90]) { translate([30,i,0]) cylinder(r1=5, r2=0, h=10); }//need to set value (i) with three values inside [start point, distance between objects objects, final point] // //COMPILE with f6