VTK  9.3.0
vtkEdgePoints.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 vtkEdgePoints_h
31#define vtkEdgePoints_h
32
33#include "vtkFiltersGeneralModule.h" // For export macro
35
36VTK_ABI_NAMESPACE_BEGIN
37class vtkMergePoints;
38
39class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
40{
41public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
48 static vtkEdgePoints* New();
49
51
54 vtkSetMacro(Value, double);
55 vtkGetMacro(Value, double);
57
58protected:
60 ~vtkEdgePoints() override;
61
63 int FillInputPortInformation(int port, vtkInformation* info) override;
64
65 double Value;
67
68private:
69 vtkEdgePoints(const vtkEdgePoints&) = delete;
70 void operator=(const vtkEdgePoints&) = delete;
71};
72
73VTK_ABI_NAMESPACE_END
74#endif
generate points on isosurface
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkMergePoints * Locator
~vtkEdgePoints() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkEdgePoints * New()
Construct object with contour value of 0.0.
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
merge exactly coincident points
Superclass for algorithms that produce only polydata as output.