Optimization of SLA print time estimation,

moved SLA print time estimation calculation into rasterization step,
so that the print time estimation is tracked by some SLAPrintStep.

Extended the output file name generator to use the SLA print statistics.
This commit is contained in:
bubnikv 2019-02-21 15:46:04 +01:00
parent 37ab271803
commit ac0c7e8065
4 changed files with 100 additions and 96 deletions

View file

@ -2,7 +2,6 @@
#define slic3r_SLAPrint_hpp_
#include <mutex>
#include "ClipperUtils.hpp"
#include "PrintBase.hpp"
#include "PrintExport.hpp"
#include "Point.hpp"
@ -237,8 +236,7 @@ public:
}
const PrintObjects& objects() const { return m_objects; }
std::string output_filename() const override
{ return this->PrintBase::output_filename(m_print_config.output_filename_format.value, "zip"); }
std::string output_filename() const override;
const SLAPrintStatistics& print_statistics() const { return m_print_statistics; }