Take filament flow ratio into account when displaying flow in gcode legend

This commit is contained in:
SoftFever 2024-06-08 10:17:30 +08:00
parent 06ef58ab3e
commit ff53f401be
2 changed files with 19 additions and 2 deletions

View file

@ -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;