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

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();