Updated offset to account for screw hole diameter

This commit is contained in:
Tom Hotston 2023-02-11 17:33:26 +00:00
parent e2e9ad536c
commit 997d2d545b
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ module gridfinityBaseplate(gridx, gridy, length, dix, diy, sp, sm, sh) {
gy = gridy == 0 ? floor(diy/length) : gridy;
dx = max(gx*length-0.5, dix);
dy = max(gy*length-0.5, diy);
off = (sp==0?0:sp==1?bp_h_bot:h_skel+(sm?h_hole:0)+(sh==0?0:sh==1?d_cs:h_cb));
off = (sp==0?0:sp==1?bp_h_bot:h_skel+(sm?h_hole:0)+(sh==0?d_screw:sh==1?d_cs:h_cb));
difference() {
@ -175,4 +175,4 @@ module cutter_screw_together(gx, gy, off) {
rotate([0,90,0])
cylinder(h=length/2, d=d_screw, center = true);
}
}
}