| 823 | return Straddle; |
| 824 | } |
| 825 | int vtkPlanesIntersection::IntersectsProjection(vtkPoints* R, int dir) |
| 826 | { |
| 827 | int intersects = 0; |
| 828 | |
| 829 | switch (dir) |
| 830 | { |
| 831 | case Xdim: |
| 832 | |
| 833 | intersects = this->RegionPts->RectangleIntersectionX(R); |
| 834 | break; |
| 835 | |
| 836 | case Ydim: |
| 837 | |
| 838 | intersects = this->RegionPts->RectangleIntersectionY(R); |
| 839 | break; |
| 840 | |
| 841 | case Zdim: |
| 842 | |
| 843 | intersects = this->RegionPts->RectangleIntersectionZ(R); |
| 844 | break; |
| 845 | } |
| 846 | |
| 847 | return intersects; |
| 848 | } |
| 849 | |
| 850 | void vtkPlanesIntersection::PrintSelf(ostream& os, vtkIndent indent) |
| 851 | { |
no outgoing calls
no test coverage detected