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

Graphics/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 =========================================================================*/
00047 #ifndef __vtkStripper_h
00048 #define __vtkStripper_h
00049 
00050 #include "vtkPolyDataToPolyDataFilter.h"
00051 
00052 class VTK_GRAPHICS_EXPORT vtkStripper : public vtkPolyDataToPolyDataFilter
00053 {
00054 public:
00055   vtkTypeRevisionMacro(vtkStripper,vtkPolyDataToPolyDataFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057   
00059   static vtkStripper *New();
00060 
00062 
00064   vtkSetClampMacro(MaximumLength,int,4,100000);
00065   vtkGetMacro(MaximumLength,int);
00067 
00068 protected:
00069   vtkStripper();
00070   ~vtkStripper() {}
00071 
00072   // Usual data generation method
00073   void Execute();
00074 
00075   int MaximumLength;
00076 
00077 private:
00078   vtkStripper(const vtkStripper&);  // Not implemented.
00079   void operator=(const vtkStripper&);  // Not implemented.
00080 };
00081 
00082 #endif
00083 
00084