[project_box] Fix locking nub size
This commit is contained in:
parent
66cb2f6c19
commit
7cd13f0eb2
1 changed files with 2 additions and 2 deletions
|
@ -110,10 +110,10 @@ module project_box(x, y,
|
||||||
nub_height = below + board_thickness + (nub_size/2) + (fit_tolerance*2);
|
nub_height = below + board_thickness + (nub_size/2) + (fit_tolerance*2);
|
||||||
translate([0,board_y / 2 - nub_width / 2,nub_height])
|
translate([0,board_y / 2 - nub_width / 2,nub_height])
|
||||||
rotate([270,0,0])
|
rotate([270,0,0])
|
||||||
cylinder(h=nub_width, r=1);
|
cylinder(h=nub_width, r=nub_size/2);
|
||||||
translate([width,board_y / 2 - nub_width / 2,nub_height])
|
translate([width,board_y / 2 - nub_width / 2,nub_height])
|
||||||
rotate([270,0,0])
|
rotate([270,0,0])
|
||||||
cylinder(h=nub_width, r=1);
|
cylinder(h=nub_width, r=nub_size/2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue