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

Method vtkTemporalPathLineFilter

Filters/General/vtkTemporalPathLineFilter.cxx:169–182  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

167static constexpr double LATEST_TIME_MAX = VTK_DOUBLE_MAX;
168//------------------------------------------------------------------------------
169vtkTemporalPathLineFilter::vtkTemporalPathLineFilter()
170{
171 this->LatestTime = LATEST_TIME_MAX;
172
173 this->PolyLines = vtkSmartPointer<vtkCellArray>::New();
174 this->Vertices = vtkSmartPointer<vtkCellArray>::New();
175 this->LineCoordinates = vtkSmartPointer<vtkPoints>::New();
176 this->VertexCoordinates = vtkSmartPointer<vtkPoints>::New();
177 this->TrailId = vtkSmartPointer<vtkFloatArray>::New();
178 this->Internals = vtkSmartPointer<vtkTemporalPathLineFilterInternals>::New();
179
180 this->SetNumberOfInputPorts(2);
181 this->SetNumberOfOutputPorts(2); // Lines and points
182}
183//------------------------------------------------------------------------------
184vtkTemporalPathLineFilter::~vtkTemporalPathLineFilter()
185{

Callers 1

Calls 3

NewFunction · 0.50
SetNumberOfInputPortsMethod · 0.45

Tested by

no test coverage detected