mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 06:04:01 -06:00
Patch from Lubomír for CLI parameters
This commit is contained in:
parent
797c812f31
commit
28bc54e5b7
5 changed files with 67 additions and 4 deletions
|
@ -637,6 +637,12 @@ public:
|
|||
ConfigOptionFloats wiping_volumes_matrix;
|
||||
ConfigOptionFloats wiping_volumes_extruders;
|
||||
ConfigOptionFloat z_offset;
|
||||
ConfigOptionFloat bed_size_x;
|
||||
ConfigOptionFloat bed_size_y;
|
||||
ConfigOptionInt pixel_width;
|
||||
ConfigOptionInt pixel_height;
|
||||
ConfigOptionFloat exp_time;
|
||||
ConfigOptionFloat exp_time_first;
|
||||
|
||||
protected:
|
||||
PrintConfig(int) : GCodeConfig(1) {}
|
||||
|
@ -706,6 +712,12 @@ protected:
|
|||
OPT_PTR(wiping_volumes_matrix);
|
||||
OPT_PTR(wiping_volumes_extruders);
|
||||
OPT_PTR(z_offset);
|
||||
OPT_PTR(bed_size_x);
|
||||
OPT_PTR(bed_size_y);
|
||||
OPT_PTR(pixel_width);
|
||||
OPT_PTR(pixel_height);
|
||||
OPT_PTR(exp_time);
|
||||
OPT_PTR(exp_time_first);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue