-----------------------------------------------------------------------------
| 399 | |
| 400 | //----------------------------------------------------------------------------- |
| 401 | inline int vtkPixelExtent::Empty() const |
| 402 | { |
| 403 | if (this->Data[0] > this->Data[1] || this->Data[2] > this->Data[3]) |
| 404 | { |
| 405 | return 1; |
| 406 | } |
| 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | //----------------------------------------------------------------------------- |
| 411 | inline bool vtkPixelExtent::operator==(const vtkPixelExtent& other) const |
no outgoing calls