mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 07:27:41 -06:00
Take filament flow ratio into account when displaying flow in gcode legend
This commit is contained in:
parent
06ef58ab3e
commit
ff53f401be
2 changed files with 19 additions and 2 deletions
|
@ -212,6 +212,7 @@ namespace Slic3r {
|
|||
std::vector<int> required_nozzle_HRC;
|
||||
std::vector<float> filament_densities;
|
||||
std::vector<float> filament_costs;
|
||||
std::vector<float> filament_flow_ratios;
|
||||
std::vector<int> filament_vitrification_temperature;
|
||||
PrintEstimatedStatistics print_statistics;
|
||||
std::vector<CustomGCode::Item> custom_gcode_per_print_z;
|
||||
|
@ -247,6 +248,7 @@ namespace Slic3r {
|
|||
filament_diameters = other.filament_diameters;
|
||||
filament_densities = other.filament_densities;
|
||||
filament_costs = other.filament_costs;
|
||||
filament_flow_ratios = other.filament_flow_ratios;
|
||||
print_statistics = other.print_statistics;
|
||||
custom_gcode_per_print_z = other.custom_gcode_per_print_z;
|
||||
spiral_vase_layers = other.spiral_vase_layers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue