Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
Graphics/vtkFeatureEdges.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00059 #ifndef __vtkFeatureEdges_h
00060 #define __vtkFeatureEdges_h
00061
00062 #include "vtkPolyDataToPolyDataFilter.h"
00063
00064 class vtkPointLocator;
00065
00066 class VTK_GRAPHICS_EXPORT vtkFeatureEdges : public vtkPolyDataToPolyDataFilter
00067 {
00068 public:
00069 vtkTypeRevisionMacro(vtkFeatureEdges,vtkPolyDataToPolyDataFilter);
00070 void PrintSelf(ostream& os, vtkIndent indent);
00071
00074 static vtkFeatureEdges *New();
00075
00077
00078 vtkSetMacro(BoundaryEdges,int);
00079 vtkGetMacro(BoundaryEdges,int);
00080 vtkBooleanMacro(BoundaryEdges,int);
00082
00084
00085 vtkSetMacro(FeatureEdges,int);
00086 vtkGetMacro(FeatureEdges,int);
00087 vtkBooleanMacro(FeatureEdges,int);
00089
00091
00092 vtkSetClampMacro(FeatureAngle,float,0.0,180.0);
00093 vtkGetMacro(FeatureAngle,float);
00095
00097
00098 vtkSetMacro(NonManifoldEdges,int);
00099 vtkGetMacro(NonManifoldEdges,int);
00100 vtkBooleanMacro(NonManifoldEdges,int);
00102
00104
00105 vtkSetMacro(ManifoldEdges,int);
00106 vtkGetMacro(ManifoldEdges,int);
00107 vtkBooleanMacro(ManifoldEdges,int);
00109
00111
00112 vtkSetMacro(Coloring,int);
00113 vtkGetMacro(Coloring,int);
00114 vtkBooleanMacro(Coloring,int);
00116
00118
00120 void SetLocator(vtkPointLocator *locator);
00121 vtkGetObjectMacro(Locator,vtkPointLocator);
00123
00125 void CreateDefaultLocator();
00126
00128 unsigned long GetMTime();
00129
00130 protected:
00131 vtkFeatureEdges();
00132 ~vtkFeatureEdges();
00133
00134
00135 void Execute();
00136 void ComputeInputUpdateExtents(vtkDataObject *output);
00137
00138 float FeatureAngle;
00139 int BoundaryEdges;
00140 int FeatureEdges;
00141 int NonManifoldEdges;
00142 int ManifoldEdges;
00143 int Coloring;
00144 vtkPointLocator *Locator;
00145 private:
00146 vtkFeatureEdges(const vtkFeatureEdges&);
00147 void operator=(const vtkFeatureEdges&);
00148 };
00149
00150 #endif
00151
00152