incremental

This commit is contained in:
jazhawang
2022-04-03 20:56:13 -04:00
parent 8a279c386b
commit d851d43c0a
27 changed files with 205504 additions and 22 deletions

View File

@ -0,0 +1,22 @@
rockProMountDeltaXY = [[0,0,0], [117.62,0,0], [117.62,71.00,0], [0,71.00,0]];
module rockProMountPoints(cylHeight, cylRad, cylFn, center) {
for (i=[0:3]) {
p = rockProMountDeltaXY[i];
translate(v=[p[0], p[1], p[2]])
cylinder(r=cylRad, h=cylHeight, $fn=cylFn, center=center);
}
}