VTK
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 =========================================================================*/
67 #ifndef vtkCompositeInterpolatedVelocityField_h
68 #define vtkCompositeInterpolatedVelocityField_h
69 
70 #include "vtkFiltersFlowPathsModule.h" // For export macro
72 
73 #include <vector> // STL Header; Required for vector
74 
75 class vtkDataSet;
76 
77 class vtkDataArray;
78 
79 class vtkPointData;
80 class vtkGenericCell;
82 
84 {
85 public:
87  void PrintSelf( ostream & os, vtkIndent indent ) override;
88 
90 
97  vtkGetMacro( LastDataSetIndex, int );
99 
100 
107  virtual void AddDataSet( vtkDataSet * dataset ) = 0;
108 
109 
110 protected:
113 
116 
117 private:
119  ( const vtkCompositeInterpolatedVelocityField & ) = delete;
120  void operator = ( const vtkCompositeInterpolatedVelocityField & ) = delete;
121 };
122 
123 typedef std::vector< vtkDataSet * > DataSetsTypeBase;
125 
126 #endif
represent and manipulate point attribute data
Definition: vtkPointData.h:37
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
An abstract class for obtaining the interpolated velocity values at a point.
An abstract class for obtaining the interpolated velocity values at a point.
provides thread-safe access to cells
vtkCompositeInterpolatedVelocityFieldDataSetsType * DataSets
a simple class to control print indentation
Definition: vtkIndent.h:39
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
std::vector< vtkDataSet * > DataSetsTypeBase