Thanks to visit codestin.com
Credit goes to vtk.org

VTK  9.5.20250921
vtkCompositeCutter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
15#ifndef vtkCompositeCutter_h
16#define vtkCompositeCutter_h
17
18#include "vtkCutter.h"
19#include "vtkFiltersCoreModule.h" // For export macro
20#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkCompositeCutter : public vtkCutter
24{
25public:
27
29
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
32protected:
37 int FillInputPortInformation(int port, vtkInformation* info) override;
38
39private:
41 void operator=(const vtkCompositeCutter&) = delete;
42};
43
44VTK_ABI_NAMESPACE_END
45#endif
Cut composite data sets with user-specified implicit function.
~vtkCompositeCutter() override
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkCompositeCutter * New()
vtkCompositeCutter(vtkImplicitFunction *cf=nullptr)
Cut vtkDataSet with user-specified implicit function.
Definition vtkCutter.h:161
abstract interface for implicit functions
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_MARSHALAUTO