------------------------------------------------------------------------------
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | void vtkCameraHandleSource::RecomputeSphere() |
| 150 | { |
| 151 | this->PositionSphere->SetRadius(this->Size / 2); |
| 152 | this->PositionSphere->SetCenter(this->GetPosition()); |
| 153 | this->PositionSphere->SetThetaResolution(16); |
| 154 | this->PositionSphere->SetPhiResolution(8); |
| 155 | this->PositionSphere->Update(); |
| 156 | } |
| 157 | |
| 158 | //------------------------------------------------------------------------------ |
| 159 | void vtkCameraHandleSource::PrintSelf(ostream& os, vtkIndent indent) |
no test coverage detected