1
0
mirror of https://github.com/pgrondek/SixInchRack.git synced 2024-11-22 03:53:42 +00:00
SixInchRack/Libs/Mesh-lib.scad
2020-01-25 17:11:34 +01:00

14 lines
422 B
OpenSCAD

module mesh(xCount, yCount, height=1, size=1) {
translate ([1*size,1*size,0]) {
for (x =[0:(xCount-1)]) {
for (y =[0:(yCount-1)]) {
translate([x*4*size,y*2.2*size,0]) {
cylinder(height,size,size,$fn=6);
translate([2*size,1*size,0])
cylinder(height,size,size,$fn=6);
}
}
}
}
}