VTK
vtkGenericInterpolatedVelocityField.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGenericInterpolatedVelocityField.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 =========================================================================*/
41 #ifndef vtkGenericInterpolatedVelocityField_h
42 #define vtkGenericInterpolatedVelocityField_h
43 
44 #include "vtkCommonDataModelModule.h" // For export macro
45 #include "vtkFunctionSet.h"
46 
47 class vtkGenericDataSet;
50 
51 class vtkGenericInterpolatedVelocityFieldDataSetsType;
52 
54 {
55 public:
57  virtual void PrintSelf(ostream& os, vtkIndent indent);
58 
62 
65  virtual int FunctionValues(double* x, double* f);
66 
71  virtual void AddDataSet(vtkGenericDataSet* dataset);
72 
75  void ClearLastCell();
76 
78  vtkGenericAdaptorCell *GetLastCell();
79 
83  int GetLastLocalCoordinates(double pcoords[3]);
84 
86 
87  vtkGetMacro(Caching, int);
88  vtkSetMacro(Caching, int);
89  vtkBooleanMacro(Caching, int);
91 
93 
94  vtkGetMacro(CacheHit, int);
95  vtkGetMacro(CacheMiss, int);
97 
99 
102  vtkGetStringMacro(VectorsSelection);
103  void SelectVectors(const char *fieldName)
104  {this->SetVectorsSelection(fieldName);}
106 
108 
112  vtkGetObjectMacro(LastDataSet, vtkGenericDataSet);
114 
117  virtual void CopyParameters(vtkGenericInterpolatedVelocityField* from);
118 
119 protected:
122 
124 
125  double LastPCoords[3]; // last local coordinates
126  int CacheHit;
128  int Caching;
129 
131 
132  vtkSetStringMacro(VectorsSelection);
133  char *VectorsSelection;
134 
135  vtkGenericInterpolatedVelocityFieldDataSetsType* DataSets;
136 
137  int FunctionValues(vtkGenericDataSet* ds, double* x, double* f);
138 
139  static const double TOLERANCE_SCALE;
140 
141 private:
143  void operator=(const vtkGenericInterpolatedVelocityField&); // Not implemented.
144 };
145 
146 #endif
virtual int FunctionValues(double *x, double *f)=0
iterator used to traverse cells
defines cell interface
vtkGenericInterpolatedVelocityFieldDataSetsType * DataSets
a simple class to control print indentation
Definition: vtkIndent.h:38
Abstract interface for sets of functions.
virtual void PrintSelf(ostream &os, vtkIndent indent)
defines dataset interface
static vtkObject * New()
#define VTKCOMMONDATAMODEL_EXPORT
Interface for obtaining interpolated velocity values.