MCPcopy Create free account
hub / github.com/Kitware/VTK / AddInput

Method AddInput

Filters/Programmable/vtkProgrammableAttributeDataFilter.cxx:39–46  ·  view source on GitHub ↗

Add a dataset to the list of data to process.

Source from the content-addressed store, hash-verified

37
38// Add a dataset to the list of data to process.
39void vtkProgrammableAttributeDataFilter::AddInput(vtkDataSet* ds)
40{
41 if (this->InputList->IndexOfFirstOccurrence(ds) < 0)
42 {
43 this->Modified();
44 this->InputList->AddItem(ds);
45 }
46}
47
48// Remove a dataset from the list of data to process.
49void vtkProgrammableAttributeDataFilter::RemoveInput(vtkDataSet* ds)

Callers 4

RequestDataMethod · 0.80
task3Function · 0.80
ScaledBoxWidget2Function · 0.80

Calls 3

ModifiedMethod · 0.45
AddItemMethod · 0.45

Tested by

no test coverage detected