VTK
vtkInterpolatedVelocityField.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInterpolatedVelocityField.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 =========================================================================*/
53 #ifndef __vtkInterpolatedVelocityField_h
54 #define __vtkInterpolatedVelocityField_h
55 
56 #include "vtkFiltersTracersModule.h" // For export macro
58 
59 class VTKFILTERSTRACERS_EXPORT vtkInterpolatedVelocityField
61 {
62 public:
63  vtkTypeMacro( vtkInterpolatedVelocityField,
65  void PrintSelf( ostream & os, vtkIndent indent );
66 
70 
75  virtual void AddDataSet( vtkDataSet * dataset );
76 
78  virtual int FunctionValues( double * x, double * f );
79 
82  virtual void SetLastCellId( vtkIdType c, int dataindex );
83 
85 
86  virtual void SetLastCellId( vtkIdType c )
87  { this->Superclass::SetLastCellId( c ); }
89 
90 protected:
93 
95 
101  virtual int FunctionValues( vtkDataSet * ds, double * x, double * f )
102  { return this->Superclass::FunctionValues( ds, x, f ); }
104 
105 private:
107  ( const vtkInterpolatedVelocityField & ); // Not implemented.
108  void operator =
109  ( const vtkInterpolatedVelocityField & ); // Not implemented.
110 };
111 
112 #endif