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 =========================================================================*/
29 #ifndef vtkParticleTracer_h
30 #define vtkParticleTracer_h
31 
32 #include "vtkFiltersFlowPathsModule.h" // For export macro
33 #include "vtkSmartPointer.h" // For protected ivars.
34 #include "vtkParticleTracerBase.h"
35 
36 class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer: public vtkParticleTracerBase
37 {
38  public:
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
42  static vtkParticleTracer *New();
43 
44  protected:
46  virtual ~vtkParticleTracer(){}
47  vtkParticleTracer(const vtkParticleTracer&) VTK_DELETE_FUNCTION;
48  void operator=(const vtkParticleTracer&) VTK_DELETE_FUNCTION;
49  virtual int OutputParticles(vtkPolyData* poly);
50 };
51 
52 
53 #endif
A Parallel Particle tracer for unsteady vector fields.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
a simple class to control print indentation
Definition: vtkIndent.h:39
A particle tracer for vector fields.