VTK  9.5.20250908
vtkConvertToPolyhedra.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
30#ifndef vtkConvertToPolyhedra_h
31#define vtkConvertToPolyhedra_h
32
33#include "vtkFiltersCoreModule.h" // For export macro
35#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
36
37VTK_ABI_NAMESPACE_BEGIN
38class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkConvertToPolyhedra
40{
41public:
43
48 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53
61 vtkSetMacro(OutputAllCells, bool);
62 vtkGetMacro(OutputAllCells, bool);
63 vtkBooleanMacro(OutputAllCells, bool);
65
66protected:
68 ~vtkConvertToPolyhedra() override = default;
69
70 // Usual data generation method
72
73 // Control output of cells
75
76private:
78 void operator=(const vtkConvertToPolyhedra&) = delete;
79};
80
81VTK_ABI_NAMESPACE_END
82#endif
convert 3D linear cells to vtkPolyhedra
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing the state of the object.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkConvertToPolyhedra() override=default
static vtkConvertToPolyhedra * New()
Standard methods for instantiation, obtaining type information, and printing the state of the object.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only unstructured grid as output.
#define VTK_MARSHALAUTO