VTK  9.1.0
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
41class vtkDataSet;
42class vtkDataArray;
43class vtkPointData;
44class vtkGenericCell;
46
47class VTKFILTERSFLOWPATHS_EXPORT vtkCompositeInterpolatedVelocityField
49{
50public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
60 virtual void AddDataSet(vtkDataSet* dataset) = 0;
61
63
70 vtkGetMacro(LastDataSetIndex, int);
72
73protected:
76
79
80private:
82 void operator=(const vtkCompositeInterpolatedVelocityField&) = delete;
83};
84
85typedef 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:159
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
provides thread-safe access to cells
a simple class to control print indentation
Definition: vtkIndent.h:113
represent and manipulate point attribute data
Definition: vtkPointData.h:142
std::vector< vtkDataSet * > DataSetsTypeBase