VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkCompositeCutter.h 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 =========================================================================*/ 00026 #ifndef __vtkCompositeCutter_h 00027 #define __vtkCompositeCutter_h 00028 00029 #include "vtkFiltersCoreModule.h" // For export macro 00030 #include "vtkCutter.h" 00031 00032 class VTKFILTERSCORE_EXPORT vtkCompositeCutter : public vtkCutter 00033 { 00034 public: 00035 vtkTypeMacro(vtkCompositeCutter,vtkCutter); 00036 00037 static vtkCompositeCutter *New(); 00038 00039 void PrintSelf(ostream& os, vtkIndent indent);; 00040 00041 protected: 00042 vtkCompositeCutter(vtkImplicitFunction *cf=NULL); 00043 virtual ~vtkCompositeCutter(); 00044 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00045 virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00046 virtual int FillInputPortInformation(int port, vtkInformation *info); 00047 00048 private: 00049 vtkCompositeCutter(const vtkCompositeCutter&); // Not implemented. 00050 void operator=(const vtkCompositeCutter&); // Not implemented. 00051 }; 00052 00053 00054 #endif