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

Function findTetFacePt

src/OpenFOAM/meshes/polyMesh/polyMesh.C:1267–1280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1265
1266
1267void Foam::polyMesh::findTetFacePt
1268(
1269 const label celli,
1270 const point& p,
1271 label& tetFacei,
1272 label& tetPti
1273) const
1274{
1275 const polyMesh& mesh = *this;
1276
1277 tetIndices tet(polyMeshTetDecomposition::findTet(mesh, celli, p));
1278 tetFacei = tet.face();
1279 tetPti = tet.tetPt();
1280}
1281
1282
1283bool Foam::polyMesh::pointInCell

Callers 2

removeFilesFunction · 0.85
pointInCellFunction · 0.85

Calls 2

faceMethod · 0.45
tetPtMethod · 0.45

Tested by

no test coverage detected