You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkCompositeCutter.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkCompositeCutter
|
|
* @brief Cut composite data sets with user-specified implicit function
|
|
*
|
|
* Loop over each data set in the composite input and apply vtkCutter
|
|
* @sa
|
|
* vtkCutter
|
|
*/
|
|
|
|
#ifndef vtkCompositeCutter_h
|
|
#define vtkCompositeCutter_h
|
|
|
|
#include "vtkFiltersCoreModule.h" // For export macro
|
|
#include "vtkCutter.h"
|
|
|
|
class VTKFILTERSCORE_EXPORT vtkCompositeCutter : public vtkCutter
|
|
{
|
|
public:
|
|
vtkTypeMacro(vtkCompositeCutter,vtkCutter);
|
|
|
|
static vtkCompositeCutter *New();
|
|
|
|
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;;
|
|
|
|
protected:
|
|
vtkCompositeCutter(vtkImplicitFunction *cf=NULL);
|
|
~vtkCompositeCutter() VTK_OVERRIDE;
|
|
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
|
|
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
|
|
int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
|
|
|
|
private:
|
|
vtkCompositeCutter(const vtkCompositeCutter&) VTK_DELETE_FUNCTION;
|
|
void operator=(const vtkCompositeCutter&) VTK_DELETE_FUNCTION;
|
|
};
|
|
|
|
|
|
#endif
|