------------------------------------------------------------------------------
| 17 | |
| 18 | //------------------------------------------------------------------------------ |
| 19 | vtkPolyLineRepresentation::vtkPolyLineRepresentation() |
| 20 | { |
| 21 | vtkNew<vtkPolyDataMapper> lineMapper; |
| 22 | lineMapper->SetInputConnection(this->PolyLineSource->GetOutputPort()); |
| 23 | lineMapper->SetResolveCoincidentTopologyToPolygonOffset(); |
| 24 | this->LineActor->SetMapper(lineMapper); |
| 25 | |
| 26 | this->SetNumberOfHandles(5); |
| 27 | |
| 28 | this->HandlePicker->PickFromListOn(); |
| 29 | } |
| 30 | |
| 31 | //------------------------------------------------------------------------------ |
| 32 | vtkPolyLineRepresentation::~vtkPolyLineRepresentation() |
nothing calls this directly
no test coverage detected