BUG: sampledPatch : triangulate=true did not map patchFaceLabels

This commit is contained in:
mattijs
2010-12-07 09:30:05 +00:00
parent dadac8acdf
commit 6ab8e5a75e

View File

@ -157,6 +157,10 @@ void Foam::sampledPatch::remapFaces
if (&faceMap && faceMap.size())
{
MeshStorage::remapFaces(faceMap);
patchFaceLabels_ = labelList
(
UIndirectList<label>(patchFaceLabels_, faceMap)
);
}
}