Further standardization of loop index naming: pointI -> pointi, patchI -> patchi

This commit is contained in:
Henry Weller
2016-05-18 21:20:42 +01:00
parent ac632e7984
commit 67de20df25
365 changed files with 4877 additions and 4877 deletions

View File

@ -403,14 +403,14 @@ void Foam::meshToMesh::distributeCells
face& f = subFaces[subFacei];
forAll(f, fp)
{
label pointI = f[fp];
if (reversePointMap[pointI] == -1)
label pointi = f[fp];
if (reversePointMap[pointi] == -1)
{
reversePointMap[pointI] = subPoints.size();
subPoints.append(tgtMesh.points()[pointI]);
reversePointMap[pointi] = subPoints.size();
subPoints.append(tgtMesh.points()[pointi]);
}
f[fp] = reversePointMap[pointI];
f[fp] = reversePointMap[pointi];
}
}