VTK  9.3.20240329
vtkParticleTracer.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
17 #ifndef vtkParticleTracer_h
18 #define vtkParticleTracer_h
19 
20 #include "vtkFiltersFlowPathsModule.h" // For export macro
21 #include "vtkParticleTracerBase.h"
22 #include "vtkSmartPointer.h" // For protected ivars.
23 
24 VTK_ABI_NAMESPACE_BEGIN
25 class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer : public vtkParticleTracerBase
26 {
27 public:
29  void PrintSelf(ostream& os, vtkIndent indent) override;
30 
32 
33 protected:
35  ~vtkParticleTracer() override = default;
37  void operator=(const vtkParticleTracer&) = delete;
38  int OutputParticles(vtkPolyData* poly) override;
39 };
40 
41 VTK_ABI_NAMESPACE_END
42 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
A particle tracer for vector fields.
A Parallel Particle tracer for unsteady vector fields.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkParticleTracer() override=default
int OutputParticles(vtkPolyData *poly) override
static vtkParticleTracer * New()
void operator=(const vtkParticleTracer &)=delete
vtkParticleTracer(const vtkParticleTracer &)=delete
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:181