VTK  9.3.20240419
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 
36 VTK_ABI_NAMESPACE_BEGIN
37 class VTKFILTERSCORE_EXPORT vtkConvertToPolyhedra : public vtkUnstructuredGridAlgorithm
38 {
39 public:
41 
46  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
51 
59  vtkSetMacro(OutputAllCells, bool);
60  vtkGetMacro(OutputAllCells, bool);
61  vtkBooleanMacro(OutputAllCells, bool);
63 
64 protected:
66  ~vtkConvertToPolyhedra() override = default;
67 
68  // Usual data generation method
70 
71  // Control output of cells
73 
74 private:
76  void operator=(const vtkConvertToPolyhedra&) = delete;
77 };
78 
79 VTK_ABI_NAMESPACE_END
80 #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.
static vtkConvertToPolyhedra * New()
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
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.