Convenience method that returns an input data object given a vector of information objects and two indices.
(self, inInfo, i, j)
| 40 | vtkself.SetNumberOfOutputPorts(self.NumberOfOutputPorts) |
| 41 | |
| 42 | def GetInputData(self, inInfo, i, j): |
| 43 | """Convenience method that returns an input data object |
| 44 | given a vector of information objects and two indices.""" |
| 45 | |
| 46 | return inInfo[i].GetInformationObject(j).Get(vtkDataObject.DATA_OBJECT()) |
| 47 | |
| 48 | def GetOutputData(self, outInfo, i): |
| 49 | """Convenience method that returns an output data object |
nothing calls this directly
no test coverage detected