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
75class vtkDataSet;
76
77class vtkDataArray;
78
79class vtkPointData;
80class vtkGenericCell;
82
84{
85public:
87 void PrintSelf( ostream & os, vtkIndent indent );
88
90
97 vtkGetMacro( LastDataSetIndex, int );
98 vtkGetObjectMacro( LastDataSet, vtkDataSet );
100
101
108 virtual void AddDataSet( vtkDataSet * dataset ) = 0;
109
110
111protected:
114
115 static const double TOLERANCE_SCALE;
116
117
120
121private:
123 ( const vtkCompositeInterpolatedVelocityField & ) VTK_DELETE_FUNCTION;
124 void operator = ( const vtkCompositeInterpolatedVelocityField & ) VTK_DELETE_FUNCTION;
125};
126
127typedef std::vector< vtkDataSet * > DataSetsTypeBase;
129
130#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.
virtual void AddDataSet(vtkDataSet *dataset)=0
Add a dataset for implicit velocity function evaluation.
vtkCompositeInterpolatedVelocityFieldDataSetsType * DataSets
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:55
abstract class to specify dataset behavior
Definition: vtkDataSet.h:63
provides thread-safe access to cells
a simple class to control print indentation
Definition: vtkIndent.h:40
represent and manipulate point attribute data
Definition: vtkPointData.h:38
std::vector< vtkDataSet * > DataSetsTypeBase