| 238 | // Update this with information from connected edge |
| 239 | template<class TrackingData> |
| 240 | inline bool Foam::pointEdgePoint::updatePoint |
| 241 | ( |
| 242 | const polyMesh& mesh, |
| 243 | const label pointi, |
| 244 | const label edgeI, |
| 245 | const pointEdgePoint& edgeInfo, |
| 246 | const scalar tol, |
| 247 | TrackingData& td |
| 248 | ) |
| 249 | { |
| 250 | return update(mesh.points()[pointi], edgeInfo, tol, td); |
| 251 | } |
| 252 | |
| 253 | |
| 254 | // Update this with new information on same point |
no test coverage detected