You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with current code (@ 285 commits) for lite bins the style_tab for bins with compartments is broken - if any, then only onesingle tab is crated, always positioned at top left.
This same feature works well with the code version on printables (but that is too old to contain the new easy way for lite bins to define bottom height)
The text was updated successfully, but these errors were encountered:
possilbe cause:
for style_tab=0; (all) in module cutEqual() the condition
if (
place_tab == 1 && (i != 1 || j != n_divy) // Top-Left Division
) {
is triggered for all but the top single compartment and thus calling cut() with t=5; thus preventing creation of a tab.
As I do not understand the intention of this conditional, I cannot offer a viable solution.
My primitve workaround is to replace invocation of cut(5) with cut(style_tab)
found likely culprit:
with Commit b4ff706 a new param place_tab was introduced to cutEqual(). Comment describes this:
'// place_tab: tab suppression for all compartments. see "gridfinity-rebuilt-bins.scad"'
But it was never implemented to set this new param place_tab to 0 when invoking from gridfinity-rebuilt-lite.
Cheers
with current code (@ 285 commits) for lite bins the style_tab for bins with compartments is broken - if any, then only onesingle tab is crated, always positioned at top left.
This same feature works well with the code version on printables (but that is too old to contain the new easy way for lite bins to define bottom height)
The text was updated successfully, but these errors were encountered: