| 64 | |
| 65 | |
| 66 | void Foam::fvMeshSubset::markPoints |
| 67 | ( |
| 68 | const labelList& curPoints, |
| 69 | Map<label>& pointMap |
| 70 | ) |
| 71 | { |
| 72 | forAll(curPoints, pointi) |
| 73 | { |
| 74 | // Note: insert will only insert if not yet there. |
| 75 | pointMap.insert(curPoints[pointi], 0); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | |
| 80 | void Foam::fvMeshSubset::markPoints |
no test coverage detected