| 1265 | |
| 1266 | |
| 1267 | void 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 | |
| 1283 | bool Foam::polyMesh::pointInCell |
no test coverage detected