| 816 | int* GetUpdateExtent() VTK_SIZEHINT(6) { return this->GetUpdateExtent(0); } |
| 817 | int* GetUpdateExtent(int port) VTK_SIZEHINT(6); |
| 818 | void GetUpdateExtent(int& x0, int& x1, int& y0, int& y1, int& z0, int& z1) |
| 819 | { |
| 820 | this->GetUpdateExtent(0, x0, x1, y0, y1, z0, z1); |
| 821 | } |
| 822 | void GetUpdateExtent(int port, int& x0, int& x1, int& y0, int& y1, int& z0, int& z1); |
| 823 | void GetUpdateExtent(int extent[6]) { this->GetUpdateExtent(0, extent); } |
| 824 | void GetUpdateExtent(int port, int extent[6]); |
no test coverage detected