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 
57 
60 {
61 public:
62  vtkTypeMacro( vtkInterpolatedVelocityField,
64  void PrintSelf( ostream & os, vtkIndent indent );
65 
69 
74  virtual void AddDataSet( vtkDataSet * dataset );
75 
77  virtual int FunctionValues( double * x, double * f );
78 
81  virtual void SetLastCellId( vtkIdType c, int dataindex );
82 
84 
85  virtual void SetLastCellId( vtkIdType c )
86  { this->Superclass::SetLastCellId( c ); }
88 
89 protected:
92 
94 
100  virtual int FunctionValues( vtkDataSet * ds, double * x, double * f )
101  { return this->Superclass::FunctionValues( ds, x, f ); }
103 
104 private:
106  ( const vtkInterpolatedVelocityField & ); // Not implemented.
107  void operator =
108  ( const vtkInterpolatedVelocityField & ); // Not implemented.
109 };
110 
111 #endif