------------------------------------------------------------------------------
| 867 | |
| 868 | //------------------------------------------------------------------------------ |
| 869 | inline int vtkStructuredGridConnectivity::Get1DOrientation( |
| 870 | int idx, int ExtentLo, int ExtentHi, int OnLo, int OnHi, int NotOnBoundary) |
| 871 | { |
| 872 | if (idx == ExtentLo) |
| 873 | { |
| 874 | return OnLo; |
| 875 | } |
| 876 | else if (idx == ExtentHi) |
| 877 | { |
| 878 | return OnHi; |
| 879 | } |
| 880 | return NotOnBoundary; |
| 881 | } |
| 882 | |
| 883 | //------------------------------------------------------------------------------ |
| 884 | inline bool vtkStructuredGridConnectivity::HasBlockConnection(int gridID, int blockDirection) |
no outgoing calls
no test coverage detected