update libslic3r

This commit is contained in:
QIDI TECH
2025-08-04 10:13:51 +08:00
parent e3f49c2fb5
commit 8d4d60ec48
96 changed files with 4993 additions and 1903 deletions

View File

@@ -8,14 +8,6 @@
namespace FlushPredict
{
enum FlushMachineType
{
Standard,
DualStandard,
DualHighFlow
};
struct RGBColor
{
unsigned char r{ 0 };
@@ -48,10 +40,10 @@ class FlushVolPredictor;
class GenericFlushPredictor
{
using RGB = FlushPredict::RGBColor;
using MachineType = FlushPredict::FlushMachineType;
public:
explicit GenericFlushPredictor(const MachineType& type);
explicit GenericFlushPredictor(const int dataset_value);
bool predict(const RGB& from, const RGB& to, float& flush);
int get_min_flush_volume();
private:
FlushVolPredictor* predictor{ nullptr };
};