| 177 | // Update this with neighbour information |
| 178 | template<class TrackingData> |
| 179 | inline bool Foam::cellInfo::updateCell |
| 180 | ( |
| 181 | const polyMesh&, |
| 182 | const label thisCelli, |
| 183 | const label neighbourFacei, |
| 184 | const cellInfo& neighbourInfo, |
| 185 | const scalar tol, |
| 186 | TrackingData& td |
| 187 | ) |
| 188 | { |
| 189 | return update |
| 190 | ( |
| 191 | neighbourInfo, |
| 192 | -1, |
| 193 | thisCelli, |
| 194 | neighbourFacei, |
| 195 | -1, |
| 196 | td |
| 197 | ); |
| 198 | } |
| 199 | |
| 200 | |
| 201 | // Update this with neighbour information |