| 484 | } |
| 485 | |
| 486 | inline double vtkBoundingBox::GetBound(int i) const |
| 487 | { |
| 488 | // If i is odd then when are returning a part of the max bounds |
| 489 | // else part of the min bounds is requested. The exact component |
| 490 | // needed is i /2 (or i right shifted by 1 |
| 491 | return ((i & 0x1) ? this->MaxPnt[i >> 1] : this->MinPnt[i >> 1]); |
| 492 | } |
| 493 | |
| 494 | inline const double* vtkBoundingBox::GetMinPoint() const |
| 495 | { |
no outgoing calls