Merge in 9 months of work on capper branch #71

Merged
mattmcw merged 95 commits from capper into main 2023-02-19 05:28:46 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 9b34b4e026 - Show all commits

View File

@ -1,6 +1,6 @@
include <./common.scad>; include <./common.scad>;
Z = 100; Z = 100 - 14.5;
baseX = 134.5; baseX = 134.5;
baseY = 105.4; baseY = 105.4;
@ -47,8 +47,8 @@ module mount () {
//center void //center void
translate([0, 0, -camBoltZ]) cube([mountBoltsX - 20, innerBaseY, Z], center =true); translate([0, 0, -camBoltZ]) cube([mountBoltsX - 20, innerBaseY, Z], center =true);
translate([0, 0, -camBoltZ]) cube([baseX + 1, innerBaseY - 40, Z], center =true); translate([0, 0, -camBoltZ]) cube([baseX + 1, innerBaseY - 40, Z], center =true);
bolts(boltD, Z + 1); bolts(boltD + .4, Z + 1);
// //inset
translate([0, 0, (Z / 2) - (Z / 2) + 15]) bolts(20, Z); translate([0, 0, (Z / 2) - (Z / 2) + 15]) bolts(20, Z);
camera_bolt(); camera_bolt();
} }