Ok, thanks.
I installed OpenScad and i really like it, only i have a problem already.
difference()
{
cube( [200,200,2] , true );
for( pos = [ 0 , 9 ] )
{
translate([pos*8,0,0])
{
cylinder( 3 , 3 + pos*0.1 , 3 + pos*0.1 , true );
}
} // end for
}
It wont show 10 holes, only the first and the last.
Anyone know what is wrong ?
thanks