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 "vtkFiltersFlowPathsModule.h" // For export macro
58 
61 {
62 public:
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
#define VTKFILTERSFLOWPATHS_EXPORT
GLclampf f
Definition: vtkgl.h:14181
virtual int FunctionValues(vtkDataSet *ds, double *x, double *f)
abstract class to specify dataset behavior
Definition: vtkDataSet.h:60
virtual void AddDataSet(vtkDataSet *dataset)=0
void PrintSelf(ostream &os, vtkIndent indent)
An abstract class for obtaining the interpolated velocity values at a point.
int vtkIdType
Definition: vtkType.h:268
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:619
GLint GLint GLint GLint GLint x
Definition: vtkgl.h:11318
virtual int FunctionValues(double *x, double *f)=0
a simple class to control print indentation
Definition: vtkIndent.h:38
const GLubyte * c
Definition: vtkgl.h:15720
A concrete class for obtaining the interpolated velocity values at a point.
virtual void SetLastCellId(vtkIdType c)
static vtkObject * New()