| 410 | void FlyTo(vtkRenderer* ren, double* x) { this->FlyTo(ren, x[0], x[1], x[2]); } |
| 411 | void FlyToImage(vtkRenderer* ren, double x, double y); |
| 412 | void FlyToImage(vtkRenderer* ren, double* x) { this->FlyToImage(ren, x[0], x[1]); } |
| 413 | ///@} |
| 414 | |
| 415 | ///@{ |
nothing calls this directly
no test coverage detected