From 808cf2e38a5b8aeb9af4a09c80a80dd7563ce0fd Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Tue, 4 Feb 2020 13:02:58 +0100 Subject: [PATCH] Hollowing: merge meshes of holes with igl (intersecting holes) --- src/libslic3r/SLAPrintSteps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/SLAPrintSteps.cpp b/src/libslic3r/SLAPrintSteps.cpp index b7d1cfa1d..7810a351f 100644 --- a/src/libslic3r/SLAPrintSteps.cpp +++ b/src/libslic3r/SLAPrintSteps.cpp @@ -143,7 +143,7 @@ void SLAPrint::Steps::drill_holes(SLAPrintObject &po) holes_mesh.merge(sla::to_triangle_mesh(holept.to_mesh())); holes_mesh.require_shared_vertices(); - MeshBoolean::cgal::self_union(holes_mesh); //FIXME-fix and use the cgal version + MeshBoolean::self_union(holes_mesh); try { MeshBoolean::cgal::minus(hollowed_mesh, holes_mesh);