VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filters
Tracers
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
57
#include "
vtkCompositeInterpolatedVelocityField.h
"
58
59
class
VTKFILTERSTRACERS_EXPORT
vtkInterpolatedVelocityField
60
:
public
vtkCompositeInterpolatedVelocityField
61
{
62
public
:
63
vtkTypeMacro(
vtkInterpolatedVelocityField
,
64
vtkCompositeInterpolatedVelocityField
);
65
void
PrintSelf
( ostream & os,
vtkIndent
indent );
66
69
static
vtkInterpolatedVelocityField
*
New
();
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
:
91
vtkInterpolatedVelocityField
() { }
92
~vtkInterpolatedVelocityField
() { }
93
95
101
virtual
int
FunctionValues
(
vtkDataSet
* ds,
double
* x,
double
* f )
102
{
return
this->Superclass::FunctionValues( ds, x, f ); }
104
105
private
:
106
vtkInterpolatedVelocityField
107
(
const
vtkInterpolatedVelocityField
& );
// Not implemented.
108
void
operator
=
109
(
const
vtkInterpolatedVelocityField
& );
// Not implemented.
110
};
111
112
#endif
Generated on Thu May 24 2012 22:22:23 for VTK by
1.8.1