Fixup of previous commit: actually adding new source files

This commit is contained in:
Lukas Matena 2019-12-13 15:08:44 +01:00
parent 2cb30f3641
commit f60ff1c7ce
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#ifndef libslic3r_MeshBoolean_hpp_
#define libslic3r_MeshBoolean_hpp_
namespace Slic3r {
class TriangleMesh;
namespace MeshBoolean {
void minus(TriangleMesh& A, const TriangleMesh& B);
void self_union(TriangleMesh& mesh);
} // namespace MeshBoolean
} // namespace Slic3r
#endif // libslic3r_MeshBoolean_hpp_