mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Fix arrangement with items larger or equal to bed dimesions.
fixes #2897 fixes #1186
This commit is contained in:
parent
6bace46be1
commit
5ed7d0aa29
2 changed files with 5 additions and 2 deletions
|
@ -577,7 +577,7 @@ void _arrange(
|
|||
std::function<bool()> stopfn)
|
||||
{
|
||||
// Integer ceiling the min distance from the bed perimeters
|
||||
coord_t md = minobjd - 2 * scaled(0.1 + EPSILON);
|
||||
coord_t md = minobjd;
|
||||
md = (md % 2) ? md / 2 + 1 : md / 2;
|
||||
|
||||
auto corrected_bin = bin;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue