00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00072 #ifndef __vtkSynchronizedTemplates2D_h
00073 #define __vtkSynchronizedTemplates2D_h
00074
00075 #include "vtkStructuredPointsToPolyDataFilter.h"
00076 #include "vtkContourValues.h"
00077 #include "vtkKitwareContourFilter.h"
00078
00079 class VTK_EXPORT vtkSynchronizedTemplates2D : public vtkStructuredPointsToPolyDataFilter
00080 {
00081 public:
00082 static vtkSynchronizedTemplates2D *New();
00083 vtkTypeMacro(vtkSynchronizedTemplates2D,vtkStructuredPointsToPolyDataFilter);
00084 void PrintSelf(ostream& os, vtkIndent indent);
00085
00087 unsigned long int GetMTime();
00088
00091 void SetValue(int i, float value) {this->ContourValues->SetValue(i,value);}
00092
00094 float GetValue(int i) {return this->ContourValues->GetValue(i);}
00095
00098 float *GetValues() {return this->ContourValues->GetValues();}
00099
00103 void GetValues(float *contourValues) {
00104 this->ContourValues->GetValues(contourValues);}
00105
00109 void SetNumberOfContours(int number) {
00110 this->ContourValues->SetNumberOfContours(number);}
00111
00113 int GetNumberOfContours() {
00114 return this->ContourValues->GetNumberOfContours();}
00115
00118 void GenerateValues(int numContours, float range[2]) {
00119 this->ContourValues->GenerateValues(numContours, range);}
00120
00123 void GenerateValues(int numContours, float rangeStart, float rangeEnd)
00124 {this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);}
00125
00126 protected:
00127 vtkSynchronizedTemplates2D();
00128 ~vtkSynchronizedTemplates2D();
00129 vtkSynchronizedTemplates2D(const vtkSynchronizedTemplates2D&) {};
00130 void operator=(const vtkSynchronizedTemplates2D&) {};
00131
00132 void Execute();
00133 vtkContourValues *ContourValues;
00134
00135 private:
00136
00137 friend VTK_EXPORT vtkKitwareContourFilter;
00138
00139 };
00140
00141
00142 #endif
00143