| 53 | |
| 54 | |
| 55 | inline void Foam::patchFaceOrientation::flip() |
| 56 | { |
| 57 | if (flipStatus_ == orientedSurface::NOFLIP) |
| 58 | { |
| 59 | flipStatus_ = orientedSurface::FLIP; |
| 60 | } |
| 61 | else if (flipStatus_ == orientedSurface::FLIP) |
| 62 | { |
| 63 | flipStatus_ = orientedSurface::NOFLIP; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | |
| 68 | template<class TrackingData> |
no outgoing calls
no test coverage detected