------------------------------------------------------------------------------
| 70 | |
| 71 | //------------------------------------------------------------------------------ |
| 72 | void vtkCameraHandleSource::SetDirection(double xTarget, double yTarget, double zTarget) |
| 73 | { |
| 74 | if ((this->GetDirection()[0] != xTarget) || (this->GetDirection()[1] != yTarget) || |
| 75 | (this->GetDirection()[2] != zTarget)) |
| 76 | { |
| 77 | this->Camera->SetFocalPoint(xTarget, yTarget, zTarget); |
| 78 | this->Modified(); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | //------------------------------------------------------------------------------ |
| 83 | double* vtkCameraHandleSource::GetDirection() |
no test coverage detected