Convenience method that returns an output data object given an information object and an index.
(self, outInfo, i)
| 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 |
| 50 | given an information object and an index.""" |
| 51 | return outInfo.GetInformationObject(i).Get(vtkDataObject.DATA_OBJECT()) |
| 52 | |
| 53 | def RequestDataObject(self, vtkself, request, inInfo, outInfo): |
| 54 | """Overwritten by subclass to manage data object creation. |
nothing calls this directly
no test coverage detected