mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-09 10:16:50 +00: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 771efc935da625d8faa4cc5b77fedc5055f93c6c)
This commit is contained in:
@@ -5406,7 +5406,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;
|
||||
|
||||
Reference in New Issue
Block a user