mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
fix for statistics
This commit is contained in:
parent
725f115756
commit
6593421802
2 changed files with 2 additions and 2 deletions
|
@ -1143,7 +1143,7 @@ void SLAPrint::process()
|
|||
for (const ClipperPolygon& polygon : supports_polygons)
|
||||
layer_support_area += area(polygon);
|
||||
|
||||
if (layer_support_area < 0 || layer_model_area > 0)
|
||||
if (layer_support_area < 0 || layer_support_area > 0)
|
||||
supports_volume += layer_support_area * l_height;
|
||||
|
||||
// Here we can save the expensively calculated polygons for printing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue