mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Future-proof qhull dependency handling
This commit is contained in:
parent
7a5d3de1c4
commit
6136fe7d92
7 changed files with 150 additions and 5 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue