VTK  9.1.0
vtkVortexCore.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkVortexCore.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=========================================================================*/
58#ifndef vtkVortexCore_h
59#define vtkVortexCore_h
60
61#include "vtkFiltersFlowPathsModule.h" // For export macro
63
64class VTKFILTERSFLOWPATHS_EXPORT vtkVortexCore : public vtkPolyDataAlgorithm
65{
66public:
67 static vtkVortexCore* New();
69 void PrintSelf(ostream& os, vtkIndent indent) override;
70
72
76 vtkSetMacro(HigherOrderMethod, vtkTypeBool);
77 vtkGetMacro(HigherOrderMethod, vtkTypeBool);
78 vtkBooleanMacro(HigherOrderMethod, vtkTypeBool);
80
82
87 vtkGetMacro(FasterApproximation, bool);
88 vtkSetMacro(FasterApproximation, bool);
89 vtkBooleanMacro(FasterApproximation, bool);
91
92protected:
94 ~vtkVortexCore() override;
95
98
100
102
103private:
104 vtkVortexCore(const vtkVortexCore&) = delete;
105 void operator=(const vtkVortexCore&) = delete;
106};
107
108#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
Compute vortex core lines using the parallel vectors method.
Definition: vtkVortexCore.h:65
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkVortexCore() override
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTypeBool HigherOrderMethod
Definition: vtkVortexCore.h:99
static vtkVortexCore * New()
bool FasterApproximation
int vtkTypeBool
Definition: vtkABI.h:69