VTK  9.2.6
vtkConvertToPolyhedra.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkConvertToPolyhedra.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
38
39#ifndef vtkConvertToPolyhedra_h
40#define vtkConvertToPolyhedra_h
41
42#include "vtkFiltersCoreModule.h" // For export macro
44
45class VTKFILTERSCORE_EXPORT vtkConvertToPolyhedra : public vtkUnstructuredGridAlgorithm
46{
47public:
49
54 void PrintSelf(ostream& os, vtkIndent indent) override;
57
59
67 vtkSetMacro(OutputAllCells, bool);
68 vtkGetMacro(OutputAllCells, bool);
69 vtkBooleanMacro(OutputAllCells, bool);
71
72protected:
74 ~vtkConvertToPolyhedra() override = default;
75
76 // Usual data generation method
78
79 // Control output of cells
81
82private:
84 void operator=(const vtkConvertToPolyhedra&) = delete;
85};
86
87#endif
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:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.