Fix for SPE-700 (Corrupted slice data)

This commit is contained in:
tamasmeszaros 2018-12-20 15:22:58 +01:00
parent ece3c74380
commit 70bfa4202f
4 changed files with 21 additions and 4 deletions
src/libslic3r/SLA

View file

@ -722,6 +722,10 @@ public:
return m_pad;
}
void remove_pad() {
m_pad = Pad();
}
const Pad& pad() const { return m_pad; }
// WITHOUT THE PAD!!!
@ -1729,6 +1733,11 @@ const TriangleMesh &SLASupportTree::get_pad() const
return m_impl->pad().tmesh;
}
void SLASupportTree::remove_pad()
{
m_impl->remove_pad();
}
SLASupportTree::SLASupportTree(const PointSet &points,
const EigenMesh3D& emesh,
const SupportConfig &cfg,