------------------------------------------------------------------------------
| 179 | |
| 180 | //------------------------------------------------------------------------------ |
| 181 | void vtkCubeAxesActor2D::SetInputData(vtkDataSet* ds) |
| 182 | { |
| 183 | vtkTrivialProducer* tp = vtkTrivialProducer::New(); |
| 184 | tp->SetOutput(ds); |
| 185 | this->SetInputConnection(tp->GetOutputPort()); |
| 186 | tp->Delete(); |
| 187 | } |
| 188 | |
| 189 | //------------------------------------------------------------------------------ |
| 190 | vtkDataSet* vtkCubeAxesActor2D::GetInput() |
nothing calls this directly
no test coverage detected