VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filtering
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 "
vtkAbstractInterpolatedVelocityField.h
"
57
58
class
VTK_FILTERING_EXPORT
vtkInterpolatedVelocityField
59
:
public
vtkAbstractInterpolatedVelocityField
60
{
61
public
:
62
vtkTypeMacro(
vtkInterpolatedVelocityField
,
63
vtkAbstractInterpolatedVelocityField
);
64
void
PrintSelf
( ostream & os,
vtkIndent
indent );
65
68
static
vtkInterpolatedVelocityField
*
New
();
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
:
90
vtkInterpolatedVelocityField
() { }
91
~vtkInterpolatedVelocityField
() { }
92
94
100
virtual
int
FunctionValues
(
vtkDataSet
* ds,
double
* x,
double
* f )
101
{
return
this->Superclass::FunctionValues( ds, x, f ); }
103
104
private
:
105
vtkInterpolatedVelocityField
106
(
const
vtkInterpolatedVelocityField
& );
// Not implemented.
107
void
operator
=
108
(
const
vtkInterpolatedVelocityField
& );
// Not implemented.
109
};
110
111
#endif
Generated on Wed May 30 2012 13:21:55 for VTK by
1.8.1