| 577 | } |
| 578 | |
| 579 | int vtkAMRBox::ComputeDimension() const |
| 580 | { |
| 581 | int dim(3); |
| 582 | for (int i = 0; i < 3; i++) |
| 583 | { |
| 584 | if (this->EmptyDimension(i)) |
| 585 | { |
| 586 | dim--; |
| 587 | } |
| 588 | } |
| 589 | return (dim); |
| 590 | } |
| 591 | |
| 592 | void vtkAMRBox::GetNumberOfCells(int ext[3]) const |
| 593 | { |
no outgoing calls
no test coverage detected