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
00053
00054
00078 #ifndef __vtkMarchingCubes_h
00079 #define __vtkMarchingCubes_h
00080
00081 #include "vtkStructuredPointsToPolyDataFilter.h"
00082 #include "vtkContourValues.h"
00083
00084 class VTK_PATENTED_EXPORT vtkMarchingCubes : public vtkStructuredPointsToPolyDataFilter
00085 {
00086 public:
00087 static vtkMarchingCubes *New();
00088 vtkTypeMacro(vtkMarchingCubes,vtkStructuredPointsToPolyDataFilter);
00089 void PrintSelf(ostream& os, vtkIndent indent);
00090
00091
00092 void SetValue(int i, float value);
00093 float GetValue(int i);
00094 float *GetValues();
00095 void GetValues(float *contourValues);
00096 void SetNumberOfContours(int number);
00097 int GetNumberOfContours();
00098 void GenerateValues(int numContours, float range[2]);
00099 void GenerateValues(int numContours, float rangeStart, float rangeEnd);
00100
00101
00102 unsigned long int GetMTime();
00103
00105
00109 vtkSetMacro(ComputeNormals,int);
00110 vtkGetMacro(ComputeNormals,int);
00111 vtkBooleanMacro(ComputeNormals,int);
00113
00115
00121 vtkSetMacro(ComputeGradients,int);
00122 vtkGetMacro(ComputeGradients,int);
00123 vtkBooleanMacro(ComputeGradients,int);
00125
00127
00128 vtkSetMacro(ComputeScalars,int);
00129 vtkGetMacro(ComputeScalars,int);
00130 vtkBooleanMacro(ComputeScalars,int);
00132
00133 void SetLocator(vtkPointLocator *locator);
00134 vtkGetObjectMacro(Locator,vtkPointLocator);
00135
00138 void CreateDefaultLocator();
00139
00140 protected:
00141 vtkMarchingCubes();
00142 ~vtkMarchingCubes();
00143
00144 void Execute();
00145
00146 vtkContourValues *ContourValues;
00147 int ComputeNormals;
00148 int ComputeGradients;
00149 int ComputeScalars;
00150 vtkPointLocator *Locator;
00151 private:
00152 vtkMarchingCubes(const vtkMarchingCubes&);
00153 void operator=(const vtkMarchingCubes&);
00154 };
00155
00158 inline void vtkMarchingCubes::SetValue(int i, float value)
00159 {this->ContourValues->SetValue(i,value);}
00160
00162
00163 inline float vtkMarchingCubes::GetValue(int i)
00164 {return this->ContourValues->GetValue(i);}
00166
00168
00170 inline float *vtkMarchingCubes::GetValues()
00171 {return this->ContourValues->GetValues();}
00173
00177 inline void vtkMarchingCubes::GetValues(float *contourValues)
00178 {this->ContourValues->GetValues(contourValues);}
00179
00183 inline void vtkMarchingCubes::SetNumberOfContours(int number)
00184 {this->ContourValues->SetNumberOfContours(number);}
00185
00187
00188 inline int vtkMarchingCubes::GetNumberOfContours()
00189 {return this->ContourValues->GetNumberOfContours();}
00191
00193
00195 inline void vtkMarchingCubes::GenerateValues(int numContours, float range[2])
00196 {this->ContourValues->GenerateValues(numContours, range);}
00198
00200
00202 inline void vtkMarchingCubes::GenerateValues(int numContours, float
00203 rangeStart, float rangeEnd)
00204 {this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);}
00206
00207 #endif
00208
00209