VTK
vtkPStreaklineFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPStreaklineFilter.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 =========================================================================*/
28 #ifndef vtkPStreaklineFilter_h
29 #define vtkPStreaklineFilter_h
30 
31 #include "vtkSmartPointer.h" // For protected ivars.
32 #include "vtkStreaklineFilter.h" //for utility
33 #include "vtkPParticleTracerBase.h"
34 #include "vtkFiltersParallelFlowPathsModule.h" // For export macro
35 
36 class VTKFILTERSPARALLELFLOWPATHS_EXPORT vtkPStreaklineFilter: public vtkPParticleTracerBase
37 {
38  public:
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
42  static vtkPStreaklineFilter *New();
43 
44  protected:
46  ~vtkPStreaklineFilter(){}
47  vtkPStreaklineFilter(const vtkPStreaklineFilter&); // Not implemented.
48  void operator=(const vtkPStreaklineFilter&); // Not implemented.
49  virtual int OutputParticles(vtkPolyData* poly);
50  virtual void Finalize();
51 
53 };
54 
55 
56 #endif
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
StreaklineFilterInternal It
A Parallel Particle tracer for unsteady vector fields.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int OutputParticles(vtkPolyData *poly)=0