VTK  9.4.20241209
vtkRecoverGeometryWireframe.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2009 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
4
30#ifndef vtkRecoverGeometryWireframe_h
31#define vtkRecoverGeometryWireframe_h
32
33#include "vtkFiltersGeometryModule.h" // For export macro
35
36#include <string> // std::string
37
38VTK_ABI_NAMESPACE_BEGIN
39class VTKFILTERSGEOMETRY_EXPORT vtkRecoverGeometryWireframe : public vtkPolyDataAlgorithm
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
47
54 vtkSetMacro(CellIdsAttribute, std::string);
55 vtkGetMacro(CellIdsAttribute, std::string);
57
58protected:
61
62 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
63 vtkInformationVector* outputVector) override;
64
65private:
67 void operator=(const vtkRecoverGeometryWireframe&) = delete;
68
69 std::string CellIdsAttribute;
70};
71
72VTK_ABI_NAMESPACE_END
73#endif // vtkRecoverGeometryWireframe_h
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 polydata as output.
Get corrected wireframe from tessellated facets.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
static vtkRecoverGeometryWireframe * New()
~vtkRecoverGeometryWireframe() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.