mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-11 14:33:04 +00:00
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)
17 lines
749 B
C++
17 lines
749 B
C++
#ifndef slic3r_Parameter_Utils_hpp_
|
|
#define slic3r_Parameter_Utils_hpp_
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
#include "PrintConfig.hpp"
|
|
|
|
namespace Slic3r {
|
|
using LayerPrintSequence = std::pair<std::pair<int, int>, std::vector<int>>;
|
|
std::vector<LayerPrintSequence> get_other_layers_print_sequence(int sequence_nums, const std::vector<int> &sequence);
|
|
void get_other_layers_print_sequence(const std::vector<LayerPrintSequence> &customize_sequences, int &sequence_nums, std::vector<int> &sequence);
|
|
|
|
extern int get_index_for_extruder_parameter(const DynamicPrintConfig &config, const std::string &opt_key, int cur_extruder_id, ExtruderType extruder_type, NozzleVolumeType nozzle_volume_type);
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_Parameter_Utils_hpp_
|