VTK  9.3.20240416
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
34 #include "vtkPolyDataAlgorithm.h"
35 
36 #include <string> // std::string
37 
38 VTK_ABI_NAMESPACE_BEGIN
39 class VTKFILTERSGEOMETRY_EXPORT vtkRecoverGeometryWireframe : public vtkPolyDataAlgorithm
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
54  vtkSetMacro(CellIdsAttribute, std::string);
55  vtkGetMacro(CellIdsAttribute, std::string);
57 
58 protected:
61 
62  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
63  vtkInformationVector* outputVector) override;
64 
65 private:
67  void operator=(const vtkRecoverGeometryWireframe&) = delete;
68 
69  std::string CellIdsAttribute;
70 };
71 
72 VTK_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.
~vtkRecoverGeometryWireframe() override
static vtkRecoverGeometryWireframe * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
@ string
Definition: vtkX3D.h:490