Hollowing gizmo can now trigger the backend calculation

This commit is contained in:
Lukas Matena 2020-01-23 11:22:06 +01:00
parent d58ee47e4d
commit 1c0aedbbe5
5 changed files with 25 additions and 4 deletions

View file

@ -1119,6 +1119,10 @@ TriangleMesh SLAPrintObject::get_mesh(SLAPrintObjectStep step) const
return this->support_mesh();
case slaposPad:
return this->pad_mesh();
case slaposHollowing:
if (m_hollowing_data)
return m_hollowing_data->hollow_mesh_with_holes;
[[fallthrough]];
default:
return TriangleMesh();
}