mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2025-01-03 12:39:34 +00:00
Merge pull request #120 from rpedde/fix-undefined-length
Fix "unknown variable length" error
This commit is contained in:
commit
d5c582f537
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ module gridfinityBase(gx, gy, l, dx, dy, style_hole, off=0, final_cut=true, only
|
|||
difference(){
|
||||
pattern_linear(gx/dbnx, gy/dbny, dbnx*l, dbny*l)
|
||||
block_base(gx, gy, l, dbnx, dbny, 0, off);
|
||||
pattern_linear(2, 2, (gx-1)*length+d_hole, (gy-1)*length+d_hole)
|
||||
pattern_linear(2, 2, (gx-1)*l_grid+d_hole, (gy-1)*l_grid+d_hole)
|
||||
block_base_hole(style_hole, off);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue