------------------------------------------------------------------------------
| 295 | |
| 296 | //------------------------------------------------------------------------------ |
| 297 | void vtkCameraPathRepresentation::RebuildRepresentation() |
| 298 | { |
| 299 | if (this->CurrentHandleIndex >= 0 && this->CurrentHandleIndex < this->NumberOfHandles) |
| 300 | { |
| 301 | this->CurrentHandleIndex = this->HighlightHandle(this->HandleActors[this->CurrentHandleIndex]); |
| 302 | } |
| 303 | else |
| 304 | { |
| 305 | this->CurrentHandleIndex = this->HighlightHandle(nullptr); |
| 306 | } |
| 307 | |
| 308 | this->BuildRepresentation(); |
| 309 | } |
| 310 | |
| 311 | //------------------------------------------------------------------------------ |
| 312 | void vtkCameraPathRepresentation::UpdateConfiguration(int npts) |
no test coverage detected