Skip to content
Snippets Groups Projects
Commit f53538b8 authored by graham's avatar graham
Browse files

BUG: stitchTriangles reordering the points, not renumbering the tris.

parent 34806371
Branches
Tags
No related merge requests found
......@@ -46,13 +46,14 @@ bool triSurface::stitchTriangles
pointField newPoints;
bool hasMerged = mergePoints(rawPoints, tol, verbose, pointMap, newPoints);
pointField& ps = storedPoints();
// Set the coordinates to the merged ones
ps.transfer(newPoints);
if (hasMerged)
{
pointField& ps = storedPoints();
// Set the coordinates to the merged ones
ps.transfer(newPoints);
if (verbose)
{
Pout<< "stitchTriangles : Merged from " << rawPoints.size()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment