Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2020-01-23 13:22:06 +0300
committerLukas Matena <lukasmatena@seznam.cz>2020-01-24 12:53:40 +0300
commit1c0aedbbe57c86fb05baec6c830a75aa41393373 (patch)
tree4f7de375985518b15d8c65a45cc46bfc3d70e4a2 /src/slic3r/GUI/Plater.hpp
parentd58ee47e4dd1e2b59210829c4d4477d2166cc9bb (diff)
Hollowing gizmo can now trigger the backend calculation
Diffstat (limited to 'src/slic3r/GUI/Plater.hpp')
-rw-r--r--src/slic3r/GUI/Plater.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp
index c03813a9c..9639a1693 100644
--- a/src/slic3r/GUI/Plater.hpp
+++ b/src/slic3r/GUI/Plater.hpp
@@ -26,6 +26,7 @@ class Model;
class ModelObject;
class Print;
class SLAPrint;
+enum SLAPrintObjectStep : unsigned int;
namespace UndoRedo {
class Stack;
@@ -197,6 +198,8 @@ public:
void hollow();
void reslice();
void reslice_SLA_supports(const ModelObject &object, bool postpone_error_messages = false);
+ void reslice_SLA_hollowing(const ModelObject &object, bool postpone_error_messages = false);
+ void reslice_SLA_until_step(SLAPrintObjectStep step, const ModelObject &object, bool postpone_error_messages = false);
void changed_object(int obj_idx);
void changed_objects(const std::vector<size_t>& object_idxs);
void schedule_background_process(bool schedule = true);