MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / markPoints

Function markPoints

src/dynamicMesh/fvMeshSubset/fvMeshSubset.C:66–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65
66void 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
80void Foam::fvMeshSubset::markPoints

Callers 2

fvMeshSubset.CFile · 0.85
setLargeCellSubsetFunction · 0.85

Calls 2

forAllFunction · 0.50
insertMethod · 0.45

Tested by

no test coverage detected