------------------------------------------------------------------------------
| 976 | |
| 977 | //------------------------------------------------------------------------------ |
| 978 | void vtkExplicitStructuredGrid::CheckAndReorderFaces() |
| 979 | { |
| 980 | // Check faces are on the correct axis |
| 981 | this->InternalCheckAndReorderFaces(true); |
| 982 | |
| 983 | // Check if faces are mirrored or not |
| 984 | this->InternalCheckAndReorderFaces(false); |
| 985 | } |
| 986 | |
| 987 | //------------------------------------------------------------------------------ |
| 988 | void vtkExplicitStructuredGrid::InternalCheckAndReorderFaces(bool swapFlag) |
no test coverage detected