VTK  9.2.6
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 =========================================================================*/
61 #ifndef vtkVortexCore_h
62 #define vtkVortexCore_h
63 
64 #include "vtkFiltersFlowPathsModule.h" // For export macro
65 #include "vtkPolyDataAlgorithm.h"
66 
67 class VTKFILTERSFLOWPATHS_EXPORT vtkVortexCore : public vtkPolyDataAlgorithm
68 {
69 public:
70  static vtkVortexCore* New();
72  void PrintSelf(ostream& os, vtkIndent indent) override;
73 
75 
79  vtkSetMacro(HigherOrderMethod, vtkTypeBool);
80  vtkGetMacro(HigherOrderMethod, vtkTypeBool);
81  vtkBooleanMacro(HigherOrderMethod, vtkTypeBool);
83 
85 
90  vtkGetMacro(FasterApproximation, bool);
91  vtkSetMacro(FasterApproximation, bool);
92  vtkBooleanMacro(FasterApproximation, bool);
94 
95 protected:
96  vtkVortexCore();
97  ~vtkVortexCore() override;
98 
100  int FillInputPortInformation(int, vtkInformation*) override;
101 
103 
105 
106 private:
107  vtkVortexCore(const vtkVortexCore&) = delete;
108  void operator=(const vtkVortexCore&) = delete;
109 };
110 
111 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkPolyDataAlgorithm * New()
int vtkTypeBool
Definition: vtkABI.h:69
Superclass for algorithms that produce only polydata as output.
Compute vortex core lines using the parallel vectors method.
Definition: vtkVortexCore.h:67
a simple class to control print indentation
Definition: vtkIndent.h:39
bool FasterApproximation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
Store zero or more vtkInformation instances.
vtkTypeBool HigherOrderMethod
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.