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

Method GetInput

IO/Parallel/vtkEnSightWriter.cxx:155–169  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Specify the input data or filter.

Source from the content-addressed store, hash-verified

153//------------------------------------------------------------------------------
154// Specify the input data or filter.
155vtkUnstructuredGrid* vtkEnSightWriter::GetInput()
156{
157 if (this->GetNumberOfInputConnections(0) < 1)
158 {
159 return nullptr;
160 }
161 else if (this->TmpInput)
162 {
163 return this->TmpInput;
164 }
165 else
166 {
167 return (vtkUnstructuredGrid*)(this->Superclass::GetInput());
168 }
169}
170
171//------------------------------------------------------------------------------
172void vtkEnSightWriter::WriteData()

Callers 6

RequestDataMethod · 0.95
WriteDataMethod · 0.95
WriteCaseFileMethod · 0.95
WriteMethod · 0.45

Calls 1

Tested by

no test coverage detected