mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
Added slop to joiner pairs and quads.
This commit is contained in:
parent
8c31586ee0
commit
241e8bb617
1 changed files with 4 additions and 4 deletions
|
@ -159,11 +159,11 @@ module joiner_clear(h=40, w=10, a=30, clearance=0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module joiner_pair(spacing=100, h=40, w=10, l=10, a=30, screwsize=undef, guides=true)
|
module joiner_pair(spacing=100, h=40, w=10, l=10, a=30, screwsize=undef, guides=true, slop=printer_slop)
|
||||||
{
|
{
|
||||||
yrot_copies([0,180]) {
|
yrot_copies([0,180]) {
|
||||||
translate([spacing/2, 0, 0]) {
|
translate([spacing/2, 0, 0]) {
|
||||||
joiner(h=h, w=w, l=l, a=a, screwsize=screwsize, guides=guides);
|
joiner(h=h, w=w, l=l, a=a, screwsize=screwsize, guides=guides, slop=slop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -183,11 +183,11 @@ module joiner_pair_clear(spacing=100, h=40, w=10, a=30, clearance=0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module joiner_quad(xspacing=100, yspacing=50, h=40, w=10, l=10, a=30, screwsize=undef, guides=true)
|
module joiner_quad(xspacing=100, yspacing=50, h=40, w=10, l=10, a=30, screwsize=undef, guides=true, slop=printer_slop)
|
||||||
{
|
{
|
||||||
zrot_copies([0,180]) {
|
zrot_copies([0,180]) {
|
||||||
translate([0, yspacing/2, 0]) {
|
translate([0, yspacing/2, 0]) {
|
||||||
joiner_pair(spacing=xspacing, h=h, w=w, l=l, a=a, screwsize=screwsize, guides=guides);
|
joiner_pair(spacing=xspacing, h=h, w=w, l=l, a=a, screwsize=screwsize, guides=guides, slop=slop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue