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 );
88 
90 
97  vtkGetMacro( LastDataSetIndex, int );
98  vtkGetObjectMacro( LastDataSet, vtkDataSet );
100 
101 
108  virtual void AddDataSet( vtkDataSet * dataset ) = 0;
109 
110 
111 protected:
114 
115  static const double TOLERANCE_SCALE;
116 
117 
120 
121 private:
123  ( const vtkCompositeInterpolatedVelocityField & ) VTK_DELETE_FUNCTION;
124  void operator = ( const vtkCompositeInterpolatedVelocityField & ) VTK_DELETE_FUNCTION;
125 };
126 
128 class vtkCompositeInterpolatedVelocityFieldDataSetsType: public DataSetsTypeBase { };
129 
130 #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
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
std::vector< vtkDataSet * > DataSetsTypeBase