------------------------------------------------------------------------------
| 937 | |
| 938 | //------------------------------------------------------------------------------ |
| 939 | int vtkStructuredGridConnectivity::IntervalOverlap(int A[2], int B[2], int overlap[2]) |
| 940 | { |
| 941 | // STEP 0: Check if we must check for a partial overlap |
| 942 | int CardinalityOfA = this->Cardinality(A); |
| 943 | int CardinalityOfB = this->Cardinality(B); |
| 944 | return (this->PartialOverlap(A, CardinalityOfA, B, CardinalityOfB, overlap)); |
| 945 | } |
| 946 | |
| 947 | //------------------------------------------------------------------------------ |
| 948 | void vtkStructuredGridConnectivity::GetIJKBlockOrientation( |
no test coverage detected