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:
authortamasmeszaros <meszaros.q@gmail.com>2019-01-29 17:10:07 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-01-29 17:10:07 +0300
commit7c839b8469d99e54d6663210a63de76603bd7136 (patch)
treea53161ca9aebd356606719814edaf3466e17143b /src/libslic3r/SLA/SLASupportTree.hpp
parent17a1f829cda4806143720deca416a6c33dd5f423 (diff)
Many major issues solved. Performance may be degraded.
Diffstat (limited to 'src/libslic3r/SLA/SLASupportTree.hpp')
-rw-r--r--src/libslic3r/SLA/SLASupportTree.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libslic3r/SLA/SLASupportTree.hpp b/src/libslic3r/SLA/SLASupportTree.hpp
index e13dd8c76..d6e128da0 100644
--- a/src/libslic3r/SLA/SLASupportTree.hpp
+++ b/src/libslic3r/SLA/SLASupportTree.hpp
@@ -114,14 +114,12 @@ class EigenMesh3D {
std::unique_ptr<AABBImpl> m_aabb;
public:
- EigenMesh3D();
EigenMesh3D(const TriangleMesh&);
-
- ~EigenMesh3D();
-
EigenMesh3D(const EigenMesh3D& other);
EigenMesh3D& operator=(const EigenMesh3D&);
+ ~EigenMesh3D();
+
inline double ground_level() const { return m_ground_level; }
inline const Eigen::MatrixXd& V() const { return m_V; }