1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-15 08:44:26 +00:00

Future-proof qhull dependency handling

This commit is contained in:
tamasmeszaros
2019-06-05 19:19:49 +02:00
parent 7a5d3de1c4
commit 6136fe7d92
7 changed files with 150 additions and 5 deletions
+1 -1
View File
@@ -578,7 +578,7 @@ TriangleMesh TriangleMesh::convex_hull_3d() const
{ // iterate through facet's vertices
orgQhull::QhullPoint p = vertices[i].point();
const float* coords = p.coordinates();
const auto* coords = p.coordinates();
dst_vertices.emplace_back(coords[0], coords[1], coords[2]);
}
unsigned int size = (unsigned int)dst_vertices.size();