* Draw subimage of the input image in the canvas at position x0 and * y0. The subimage is defined with sx, sy, width, and height. */
| 86 | * y0. The subimage is defined with sx, sy, width, and height. |
| 87 | */ |
| 88 | void DrawImage(int x0, int y0, vtkImageData* i) { this->DrawImage(x0, y0, i, -1, -1, -1, -1); } |
| 89 | void DrawImage(int x0, int y0, vtkImageData*, int sx, int sy, int width, int height); |
| 90 | |
| 91 | /** |