Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 6c517e5e authored by Achim Gsell's avatar Achim Gsell
Browse files

bugfix in makeTriangleNormalInwardPointing()

- break loop if queue_cursor >= queue_end.
parent 48a60c6e
No related branches found
No related tags found
1 merge request!476Resolve "Segmantation fault with BoundaryGeometry"
......@@ -1962,26 +1962,27 @@ Change orientation if diff is:
Find next untested triangle, trivial for the first sub-mesh.
There is a least one not yet tested triangle!
*/
while (isOriented [triangle_id])
while (isOriented[triangle_id])
triangle_id++;
// ensure that normal of this triangle is inward pointing
if (!hasInwardPointingNormal (bg, triangle_id)) {
std::swap (bg->PointID (triangle_id, 2), bg->PointID (triangle_id, 3));
}
isOriented [triangle_id] = true;
isOriented[triangle_id] = true;
// loop over all triangles in sub-mesh
triangles [queue_end++] = triangle_id;
triangles[queue_end++] = triangle_id;
do {
for (auto neighbor_id: neighbors [triangle_id]) {
if (isOriented [neighbor_id]) continue;
for (auto neighbor_id: neighbors[triangle_id]) {
if (isOriented[neighbor_id]) continue;
orientTriangle (bg, triangle_id, neighbor_id);
isOriented [neighbor_id] = true;
isOriented[neighbor_id] = true;
triangles[queue_end++] = neighbor_id;
}
triangle_id = triangles [++queue_cursor];
} while (queue_cursor < queue_end);
if (++queue_cursor >= queue_end) break;
triangle_id = triangles[queue_cursor];
} while (true);
} while (queue_end < bg->Triangles_m.size());
if (parts == 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment