mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2024-12-22 14:53:25 +00:00
Fix clearence -> clearance typo
This commit is contained in:
parent
faff922757
commit
0b7bf6ee78
2 changed files with 6 additions and 6 deletions
|
@ -72,13 +72,13 @@ module gridfinityBaseplate(gridx, gridy, length, dix, diy, sp, sm, sh, fitx, fit
|
||||||
|
|
||||||
gx = gridx == 0 ? floor(dix/length) : gridx;
|
gx = gridx == 0 ? floor(dix/length) : gridx;
|
||||||
gy = gridy == 0 ? floor(diy/length) : gridy;
|
gy = gridy == 0 ? floor(diy/length) : gridy;
|
||||||
dx = max(gx*length-bp_xy_clearence, dix);
|
dx = max(gx*length-bp_xy_clearance, dix);
|
||||||
dy = max(gy*length-bp_xy_clearence, diy);
|
dy = max(gy*length-bp_xy_clearance, diy);
|
||||||
|
|
||||||
off = calculate_off(sp, sm, sh);
|
off = calculate_off(sp, sm, sh);
|
||||||
|
|
||||||
offsetx = dix < dx ? 0 : (gx*length-bp_xy_clearence-dix)/2*fitx*-1;
|
offsetx = dix < dx ? 0 : (gx*length-bp_xy_clearance-dix)/2*fitx*-1;
|
||||||
offsety = diy < dy ? 0 : (gy*length-bp_xy_clearence-diy)/2*fity*-1;
|
offsety = diy < dy ? 0 : (gy*length-bp_xy_clearance-diy)/2*fity*-1;
|
||||||
|
|
||||||
difference() {
|
difference() {
|
||||||
translate([offsetx,offsety,h_base])
|
translate([offsetx,offsety,h_base])
|
||||||
|
|
|
@ -69,8 +69,8 @@ bp_rcut_width = 8.5;
|
||||||
bp_rcut_length = 4.25;
|
bp_rcut_length = 4.25;
|
||||||
// Baseplate bottom cutout rounded thingy depth
|
// Baseplate bottom cutout rounded thingy depth
|
||||||
bp_rcut_depth = 2;
|
bp_rcut_depth = 2;
|
||||||
// Baseplate clearence offset
|
// Baseplate clearance offset
|
||||||
bp_xy_clearence = 0.5;
|
bp_xy_clearance = 0.5;
|
||||||
// countersink diameter for baseplate
|
// countersink diameter for baseplate
|
||||||
d_cs = 2.5;
|
d_cs = 2.5;
|
||||||
// radius of cutout for skeletonized baseplate
|
// radius of cutout for skeletonized baseplate
|
||||||
|
|
Loading…
Reference in a new issue