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], [116.5,0,0], [116.5,71.0,0], [0,71.0,0]];
module rockProMountPoints(cylHeight, cylRad1, cylRad2, cylFn, center) {
for (i=[0:3]) {
p = rockProMountDeltaXY[i];
translate(v=[p[0], p[1], p[2]])
cylinder(r1=cylRad1, r2=cylRad2, h=cylHeight, $fn=cylFn, center=center);
}
}
//rockProMountPoints(10,2,64, true);