mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Time estimation improvement
This commit is contained in:
parent
3f23bd5224
commit
2df069323c
4 changed files with 147 additions and 87 deletions
|
@ -177,6 +177,8 @@ struct SLAPrintStatistics
|
|||
std::string estimated_print_time;
|
||||
double objects_used_material;
|
||||
double support_used_material;
|
||||
size_t slow_layers_count;
|
||||
size_t fast_layers_count;
|
||||
double total_cost;
|
||||
double total_weight;
|
||||
|
||||
|
@ -191,6 +193,8 @@ struct SLAPrintStatistics
|
|||
estimated_print_time.clear();
|
||||
objects_used_material = 0.;
|
||||
support_used_material = 0.;
|
||||
slow_layers_count = 0;
|
||||
fast_layers_count = 0;
|
||||
total_cost = 0.;
|
||||
total_weight = 0.;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue