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

vtkStripper.h

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