------------------------------------------------------------------------------
| 79 | |
| 80 | //------------------------------------------------------------------------------ |
| 81 | vtkPixelExtent vtkPixelExtent::NodeToCell(const vtkPixelExtent& inputExt) |
| 82 | { |
| 83 | vtkPixelExtent outputExt(inputExt); |
| 84 | --outputExt[1]; |
| 85 | --outputExt[3]; |
| 86 | return outputExt; |
| 87 | } |
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | void vtkPixelExtent::Shift(int* ij, int n) |