mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-19 06:41:14 -06:00
ENH: auto adapt distance in arrangement
JIRA: STUDIO-4408 1. if min_obj_distance is 0, use auto mode 2. normal support, 5mm gap, tree support, 22mm gap, no support, 0.1mm gap Change-Id: I906ccf267bef1f33a946572614d658fd50cfcda3 (cherry picked from commit 3c65150434c9938442b0c8d7995f21bb5e50db89)
This commit is contained in:
parent
6574a0fec4
commit
b9cc020fea
5 changed files with 14 additions and 10 deletions
|
@ -5367,7 +5367,7 @@ bool GLCanvas3D::_render_arrange_menu(float left, float right, float bottom, flo
|
|||
//BBS:
|
||||
seq_print = true;
|
||||
} else {
|
||||
dist_min = 0.1f;
|
||||
dist_min = 0.0f;
|
||||
postfix = "_fff";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -473,7 +473,7 @@ public:
|
|||
|
||||
struct ArrangeSettings
|
||||
{
|
||||
float distance = 5.;
|
||||
float distance = 0.f;
|
||||
// float distance_sla = 6.;
|
||||
float accuracy = 0.65f; // Unused currently
|
||||
bool enable_rotation = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue