VTK  9.2.6
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=========================================================================*/
28
29#ifndef vtkParticleTracer_h
30#define vtkParticleTracer_h
31
32#include "vtkFiltersFlowPathsModule.h" // For export macro
34#include "vtkSmartPointer.h" // For protected ivars.
35
36class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer : public vtkParticleTracerBase
37{
38public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
43
44protected:
46 ~vtkParticleTracer() override = default;
48 void operator=(const vtkParticleTracer&) = delete;
49 int OutputParticles(vtkPolyData* poly) override;
50};
51
52#endif
a simple class to control print indentation
Definition vtkIndent.h:40
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:91