| 282 | // Update this with information from connected point |
| 283 | template<class TrackingData> |
| 284 | inline bool Foam::pointEdgePoint::updateEdge |
| 285 | ( |
| 286 | const polyMesh& mesh, |
| 287 | const label edgeI, |
| 288 | const label pointi, |
| 289 | const pointEdgePoint& pointInfo, |
| 290 | const scalar tol, |
| 291 | TrackingData& td |
| 292 | ) |
| 293 | { |
| 294 | const edge& e = mesh.edges()[edgeI]; |
| 295 | return update(e.centre(mesh.points()), pointInfo, tol, td); |
| 296 | } |
| 297 | |
| 298 | |
| 299 | template<class TrackingData> |
no test coverage detected