VTK  9.1.0
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
31#include "vtkSmartPointer.h" // For protected ivars.
32
33class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer : public vtkParticleTracerBase
34{
35public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
40
41protected:
43 ~vtkParticleTracer() override = default;
45 void operator=(const vtkParticleTracer&) = delete;
46 int OutputParticles(vtkPolyData* poly) override;
47};
48
49#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
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:195