mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-10 18:56:13 +00:00
calib: default-init Calib_Params scalar fields (#14413)
This commit is contained in:
@@ -35,10 +35,10 @@ struct Calib_Params
|
|||||||
{
|
{
|
||||||
Calib_Params() : mode(CalibMode::Calib_None){};
|
Calib_Params() : mode(CalibMode::Calib_None){};
|
||||||
int extruder_id = 0;
|
int extruder_id = 0;
|
||||||
double start, end, step;
|
double start = 0.0, end = 1.0, step = 0.1;
|
||||||
bool print_numbers;
|
bool print_numbers = false;
|
||||||
double freqStartX, freqEndX, freqStartY, freqEndY;
|
double freqStartX = 0.0, freqEndX = 1.0, freqStartY = 0.0, freqEndY = 1.0;
|
||||||
int test_model;
|
int test_model = 0;
|
||||||
std::string shaper_type;
|
std::string shaper_type;
|
||||||
std::vector<double> accelerations;
|
std::vector<double> accelerations;
|
||||||
std::vector<double> speeds;
|
std::vector<double> speeds;
|
||||||
|
|||||||
Reference in New Issue
Block a user