------------------------------------------------------------------------------ Add a data object to the list of data to plot.
| 576 | //------------------------------------------------------------------------------ |
| 577 | // Add a data object to the list of data to plot. |
| 578 | void vtkXYPlotActor::AddDataObjectInput(vtkDataObject* in) |
| 579 | { |
| 580 | vtkTrivialProducer* tp = vtkTrivialProducer::New(); |
| 581 | tp->SetOutput(in); |
| 582 | this->AddDataObjectInputConnection(tp->GetOutputPort()); |
| 583 | tp->Delete(); |
| 584 | } |
| 585 | |
| 586 | //------------------------------------------------------------------------------ |
| 587 | // Remove a data object from the list of data to plot. |
no test coverage detected