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
62 #include "vtkPolyDataAlgorithm.h"
63 
64 class VTKFILTERSFLOWPATHS_EXPORT vtkVortexCore : public vtkPolyDataAlgorithm
65 {
66 public:
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 
92 protected:
94  ~vtkVortexCore() override;
95 
98 
100 
102 
103 private:
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:34
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
static vtkVortexCore * New()
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
bool FasterApproximation
int vtkTypeBool
Definition: vtkABI.h:69