------------------------------------------------------------------------------
| 598 | |
| 599 | //------------------------------------------------------------------------------ |
| 600 | void vtkLineRepresentation::SetRepresentationState(int state) |
| 601 | { |
| 602 | state = std::min<int>( |
| 603 | std::max<int>(state, vtkLineRepresentation::Outside), vtkLineRepresentation::Scaling); |
| 604 | |
| 605 | if (this->RepresentationState == state) |
| 606 | { |
| 607 | return; |
| 608 | } |
| 609 | |
| 610 | this->RepresentationState = state; |
| 611 | this->Modified(); |
| 612 | } |
| 613 | |
| 614 | //------------------------------------------------------------------------------ |
| 615 | double* vtkLineRepresentation::GetBounds() |
no test coverage detected