vtkKitwareCutter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00051 #ifndef __vtkKitwareCutter_h
00052 #define __vtkKitwareCutter_h
00053
00054 #include "vtkCutter.h"
00055
00056 class VTK_PATENTED_EXPORT vtkKitwareCutter : public vtkCutter
00057 {
00058 public:
00059 static vtkKitwareCutter *New();
00060 vtkTypeRevisionMacro(vtkKitwareCutter, vtkCutter);
00061 void PrintSelf(ostream &os, vtkIndent indent);
00062
00063 protected:
00064 vtkKitwareCutter();
00065 ~vtkKitwareCutter();
00066
00067 void Execute();
00068
00069 void StructuredPointsCutter();
00070 void StructuredGridCutter();
00071 void RectilinearGridCutter();
00072
00073 private:
00074 vtkKitwareCutter(const vtkKitwareCutter&);
00075 void operator=(const vtkKitwareCutter&);
00076 };
00077
00078 #endif