| 171 | |
| 172 | |
| 173 | Foam::label Foam::edgeFaceCirculator::cellLabel() const |
| 174 | { |
| 175 | if (ownerSide_) |
| 176 | { |
| 177 | return mesh_.faceOwner()[faceLabel_]; |
| 178 | } |
| 179 | else if (mesh_.isInternalFace(faceLabel_)) |
| 180 | { |
| 181 | return mesh_.faceNeighbour()[faceLabel_]; |
| 182 | } |
| 183 | else |
| 184 | { |
| 185 | return -1; |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | |
| 190 | bool Foam::edgeFaceCirculator::sameOrder(const label v0, const label v1) const |
no test coverage detected