| 300 | } |
| 301 | |
| 302 | bool vtkAMRBox::Intersect(const vtkAMRBox& other) |
| 303 | { |
| 304 | return this->IntersectBoxAlongDimension(other, 0) && this->IntersectBoxAlongDimension(other, 1) && |
| 305 | this->IntersectBoxAlongDimension(other, 2); |
| 306 | } |
| 307 | |
| 308 | int vtkAMRBox::GetCellLinearIndex(const vtkAMRBox& box, int i, int j, int k, int dim[3]) |
| 309 | { |