VTK  9.4.20241226
vtkGraphToPoints.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-NVIDIA-USGov
15#ifndef vtkGraphToPoints_h
16#define vtkGraphToPoints_h
17
18#include "vtkFiltersGeneralModule.h" // For export macro
20
21VTK_ABI_NAMESPACE_BEGIN
22class VTKFILTERSGENERAL_EXPORT vtkGraphToPoints : public vtkPolyDataAlgorithm
23{
24public:
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
29protected:
31 ~vtkGraphToPoints() override = default;
32
37
41 int FillInputPortInformation(int port, vtkInformation* info) override;
42
43private:
44 vtkGraphToPoints(const vtkGraphToPoints&) = delete;
45 void operator=(const vtkGraphToPoints&) = delete;
46};
47
48VTK_ABI_NAMESPACE_END
49#endif
convert a vtkGraph a set of points.
~vtkGraphToPoints() override=default
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Convert the vtkGraph into vtkPolyData.
int FillInputPortInformation(int port, vtkInformation *info) override
Set the input type of the algorithm to vtkGraph.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkGraphToPoints * New()
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.