-----------------------------------------------------------------------------
| 486 | |
| 487 | //----------------------------------------------------------------------------- |
| 488 | inline int vtkPixelExtent::Disjoint(vtkPixelExtent other) const |
| 489 | { |
| 490 | other &= *this; |
| 491 | return other.Empty(); |
| 492 | } |
| 493 | |
| 494 | //----------------------------------------------------------------------------- |
| 495 | inline void vtkPixelExtent::Grow(int n) |