mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-20 19:42:21 -07:00
FIX: add clumping detect area parameter
1. add wrapping detect area parameter 2. fix spiral retract bug 3. modify the enable parameter to print config 4. close clumping detect for manual cali mode jira: STUDIO-13761 & STUDIO-13766 Change-Id: Ib597ca48a0342a8ae3930f5e790085987f252374 (cherry picked from commit 698a5e6bc0b281ba77fc1fd7692daec09cb440b4)
This commit is contained in:
parent
b39bc5bf8f
commit
89c58fb4d9
20 changed files with 56 additions and 78 deletions
|
|
@ -3576,11 +3576,12 @@ void PrintConfigDef::init_fff_params()
|
|||
def->mode = comDevelop;
|
||||
def->set_default_value(new ConfigOptionInt(20));
|
||||
|
||||
def = this->add("wrapping_detection_path", coPoints);
|
||||
//def->label = L("Clumping detection position");
|
||||
//def->tooltip = L("Clumping detection position.");
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionPoints{Vec2d(197.5, 326), Vec2d(207.5, 326)});
|
||||
def = this->add("wrapping_exclude_area", coPoints);
|
||||
def->label = L("Probing exclude area of clumping");
|
||||
def->tooltip = L("Probing exclude area of clumping.");
|
||||
def->mode = comAdvanced;
|
||||
def->gui_type = ConfigOptionDef::GUIType::one_string;
|
||||
def->set_default_value(new ConfigOptionPoints{Vec2d(145, 326), Vec2d(145, 310), Vec2d(256, 310), Vec2d(256, 326)});
|
||||
|
||||
def = this->add("sparse_infill_filament", coInt);
|
||||
def->gui_type = ConfigOptionDef::GUIType::i_enum_open;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue