------------------------------------------------------------------------------
| 617 | |
| 618 | //------------------------------------------------------------------------------ |
| 619 | bool vtkAMRBox::Contains(int i, int j, int k) const |
| 620 | { |
| 621 | int ijk[3] = { i, j, k }; |
| 622 | return this->Contains(ijk); |
| 623 | } |
| 624 | |
| 625 | //------------------------------------------------------------------------------ |
| 626 | bool vtkAMRBox::Contains(const int* I) const |
no outgoing calls
no test coverage detected