------------------------------------------------------------------------------
| 57 | |
| 58 | //------------------------------------------------------------------------------ |
| 59 | int vtkParticlePathFilter::Initialize( |
| 60 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 61 | { |
| 62 | int retVal = this->Superclass::Initialize(request, inputVector, outputVector); |
| 63 | |
| 64 | this->Paths.clear(); |
| 65 | |
| 66 | this->Points = vtkSmartPointer<vtkPointSet>::New(); |
| 67 | vtkNew<vtkPoints> points; |
| 68 | this->Points->SetPoints(points); |
| 69 | this->Points->GetPointData()->CopyAllocate(this->OutputPointData); |
| 70 | |
| 71 | return retVal; |
| 72 | } |
| 73 | |
| 74 | //------------------------------------------------------------------------------ |
| 75 | int vtkParticlePathFilter::Execute( |
no test coverage detected