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
21#ifndef vtkEdgePoints_h
22#define vtkEdgePoints_h
23
24#include "vtkFiltersGeneralModule.h" // For export macro
26
27VTK_ABI_NAMESPACE_BEGIN
28class vtkMergePoints;
29
30class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
31{
32public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
39 static vtkEdgePoints* New();
40
42
45 vtkSetMacro(Value, double);
46 vtkGetMacro(Value, double);
48
49protected:
51 ~vtkEdgePoints() override;
52
54 int FillInputPortInformation(int port, vtkInformation* info) override;
55
56 double Value;
58
59private:
60 vtkEdgePoints(const vtkEdgePoints&) = delete;
61 void operator=(const vtkEdgePoints&) = delete;
62};
63
64VTK_ABI_NAMESPACE_END
65#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:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
merge exactly coincident points
Superclass for algorithms that produce only polydata as output.