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
00056 #ifndef __vtkCutter_h
00057 #define __vtkCutter_h
00058
00059 #include "vtkDataSetToPolyDataFilter.h"
00060 #include "vtkContourValues.h"
00061 #include "vtkImplicitFunction.h"
00062
00063 #define VTK_SORT_BY_VALUE 0
00064 #define VTK_SORT_BY_CELL 1
00065
00066
00067 class VTK_EXPORT vtkCutter : public vtkDataSetToPolyDataFilter
00068 {
00069 public:
00070 vtkTypeMacro(vtkCutter,vtkDataSetToPolyDataFilter);
00071 void PrintSelf(ostream& os, vtkIndent indent);
00072
00075 static vtkCutter *New();
00076
00079 void SetValue(int i, float value)
00080 {this->ContourValues->SetValue(i,value);}
00081
00083 float GetValue(int i)
00084 {return this->ContourValues->GetValue(i);}
00085
00088 float *GetValues()
00089 {return this->ContourValues->GetValues();}
00090
00094 void GetValues(float *contourValues)
00095 {this->ContourValues->GetValues(contourValues);}
00096
00100 void SetNumberOfContours(int number)
00101 {this->ContourValues->SetNumberOfContours(number);}
00102
00104 int GetNumberOfContours()
00105 {return this->ContourValues->GetNumberOfContours();}
00106
00109 void GenerateValues(int numContours, float range[2])
00110 {this->ContourValues->GenerateValues(numContours, range);}
00111
00114 void GenerateValues(int numContours, float rangeStart, float rangeEnd)
00115 {this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);}
00116
00119 unsigned long GetMTime();
00120
00122 vtkSetObjectMacro(CutFunction,vtkImplicitFunction);
00123 vtkGetObjectMacro(CutFunction,vtkImplicitFunction);
00124
00128 vtkSetMacro(GenerateCutScalars,int);
00129 vtkGetMacro(GenerateCutScalars,int);
00130 vtkBooleanMacro(GenerateCutScalars,int);
00131
00134 void SetLocator(vtkPointLocator *locator);
00135 vtkGetObjectMacro(Locator,vtkPointLocator);
00136
00145 vtkSetClampMacro(SortBy,int,VTK_SORT_BY_VALUE,VTK_SORT_BY_CELL);
00146 vtkGetMacro(SortBy,int);
00147 void SetSortByToSortByValue() {this->SetSortBy(VTK_SORT_BY_VALUE);};
00148 void SetSortByToSortByCell() {this->SetSortBy(VTK_SORT_BY_CELL);};
00149 const char *GetSortByAsString();
00150
00153 void CreateDefaultLocator();
00154
00155 #ifndef VTK_REMOVE_LEGACY_CODE
00156
00157 void SetLocator(vtkPointLocator& locator)
00158 {VTK_LEGACY_METHOD(SetLocator,"3.2"); this->SetLocator(&locator);}
00159 #endif
00160
00161 protected:
00162 vtkCutter(vtkImplicitFunction *cf=NULL);
00163 ~vtkCutter();
00164 vtkCutter(const vtkCutter&) {};
00165 void operator=(const vtkCutter&) {};
00166
00167 void Execute();
00168 vtkImplicitFunction *CutFunction;
00169
00170 vtkPointLocator *Locator;
00171 int SortBy;
00172 vtkContourValues *ContourValues;
00173 int GenerateCutScalars;
00174 };
00175
00177 inline const char *vtkCutter::GetSortByAsString(void)
00178 {
00179 if ( this->SortBy == VTK_SORT_BY_VALUE )
00180 {
00181 return "SortByValue";
00182 }
00183 else
00184 {
00185 return "SortByCell";
00186 }
00187 }
00188
00189
00190 #endif
00191
00192