VTK  9.0.3
vtkCompositeInterpolatedVelocityField.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeInterpolatedVelocityField.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 =========================================================================*/
33 #ifndef vtkCompositeInterpolatedVelocityField_h
34 #define vtkCompositeInterpolatedVelocityField_h
35 
37 #include "vtkFiltersFlowPathsModule.h" // For export macro
38 
39 #include <vector> // STL Header; Required for vector
40 
41 class vtkDataSet;
42 class vtkDataArray;
43 class vtkPointData;
44 class vtkGenericCell;
46 
47 class VTKFILTERSFLOWPATHS_EXPORT vtkCompositeInterpolatedVelocityField
49 {
50 public:
52  void PrintSelf(ostream& os, vtkIndent indent) override;
53 
60  virtual void AddDataSet(vtkDataSet* dataset) = 0;
61 
63 
70  vtkGetMacro(LastDataSetIndex, int);
72 
73 protected:
76 
79 
80 private:
82  void operator=(const vtkCompositeInterpolatedVelocityField&) = delete;
83 };
84 
85 typedef std::vector<vtkDataSet*> DataSetsTypeBase;
87 {
88 };
89 
90 #endif
An abstract class for obtaining the interpolated velocity values at a point.
An abstract class for obtaining the interpolated velocity values at a point.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void AddDataSet(vtkDataSet *dataset)=0
Add a dataset for implicit velocity function evaluation.
vtkCompositeInterpolatedVelocityFieldDataSetsType * DataSets
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
abstract class to specify dataset behavior
Definition: vtkDataSet.h:57
provides thread-safe access to cells
a simple class to control print indentation
Definition: vtkIndent.h:34
represent and manipulate point attribute data
Definition: vtkPointData.h:32
std::vector< vtkDataSet * > DataSetsTypeBase