| 201 | // Update this with neighbour information |
| 202 | template<class TrackingData> |
| 203 | inline bool Foam::cellInfo::updateFace |
| 204 | ( |
| 205 | const polyMesh&, |
| 206 | const label thisFacei, |
| 207 | const label neighbourCelli, |
| 208 | const cellInfo& neighbourInfo, |
| 209 | const scalar tol, |
| 210 | TrackingData& td |
| 211 | ) |
| 212 | { |
| 213 | return update |
| 214 | ( |
| 215 | neighbourInfo, |
| 216 | thisFacei, |
| 217 | -1, |
| 218 | -1, |
| 219 | neighbourCelli, |
| 220 | td |
| 221 | ); |
| 222 | } |
| 223 | |
| 224 | // Update this with neighbour information |
| 225 | template<class TrackingData> |