Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Graphics/vtkStripper.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkStripper.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00051 #ifndef __vtkStripper_h 00052 #define __vtkStripper_h 00053 00054 #include "vtkPolyDataToPolyDataFilter.h" 00055 00056 class VTK_GRAPHICS_EXPORT vtkStripper : public vtkPolyDataToPolyDataFilter 00057 { 00058 public: 00059 vtkTypeRevisionMacro(vtkStripper,vtkPolyDataToPolyDataFilter); 00060 void PrintSelf(ostream& os, vtkIndent indent); 00061 00063 static vtkStripper *New(); 00064 00066 00068 vtkSetClampMacro(MaximumLength,int,4,100000); 00069 vtkGetMacro(MaximumLength,int); 00071 00072 protected: 00073 vtkStripper(); 00074 ~vtkStripper() {} 00075 00076 // Usual data generation method 00077 void Execute(); 00078 00079 int MaximumLength; 00080 00081 private: 00082 vtkStripper(const vtkStripper&); // Not implemented. 00083 void operator=(const vtkStripper&); // Not implemented. 00084 }; 00085 00086 #endif 00087 00088