------------------------------------------------------------------------------
| 28 | |
| 29 | //------------------------------------------------------------------------------ |
| 30 | void vtkCameraPathRepresentation::SetDirectional(bool val) |
| 31 | { |
| 32 | if (this->Directional == val) |
| 33 | { |
| 34 | return; |
| 35 | } |
| 36 | |
| 37 | this->Directional = val; |
| 38 | this->Modified(); |
| 39 | |
| 40 | for (int i = 0; i < this->NumberOfHandles; ++i) |
| 41 | { |
| 42 | this->CameraHandles[i]->SetDirectional(this->Directional); |
| 43 | this->CameraHandles[i]->Update(); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | //------------------------------------------------------------------------------ |
| 48 | void vtkCameraPathRepresentation::BuildRepresentation() |
no test coverage detected