VTK
vtkParticleTracer.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParticleTracer.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef vtkParticleTracer_h
27 #define vtkParticleTracer_h
28 
29 #include "vtkFiltersFlowPathsModule.h" // For export macro
30 #include "vtkSmartPointer.h" // For protected ivars.
31 #include "vtkParticleTracerBase.h"
32 
33 class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer: public vtkParticleTracerBase
34 {
35  public:
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
39  static vtkParticleTracer *New();
40 
41  protected:
43  ~vtkParticleTracer() override{}
44  vtkParticleTracer(const vtkParticleTracer&) = delete;
45  void operator=(const vtkParticleTracer&) = delete;
46  int OutputParticles(vtkPolyData* poly) override;
47 };
48 
49 
50 #endif
A Parallel Particle tracer for unsteady vector fields.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:79
static vtkPolyDataAlgorithm * New()
a simple class to control print indentation
Definition: vtkIndent.h:33
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int OutputParticles(vtkPolyData *poly)=0
~vtkParticleTracer() override
A particle tracer for vector fields.