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
34 #include "vtkPolyDataAlgorithm.h"
35 
36 VTK_ABI_NAMESPACE_BEGIN
37 class vtkMergePoints;
38 
39 class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
48  static vtkEdgePoints* New();
49 
51 
54  vtkSetMacro(Value, double);
55  vtkGetMacro(Value, double);
57 
58 protected:
60  ~vtkEdgePoints() override;
61 
64 
65  double Value;
67 
68 private:
69  vtkEdgePoints(const vtkEdgePoints&) = delete;
70  void operator=(const vtkEdgePoints&) = delete;
71 };
72 
73 VTK_ABI_NAMESPACE_END
74 #endif
generate points on isosurface
Definition: vtkEdgePoints.h:40
static vtkEdgePoints * New()
Construct object with contour value of 0.0.
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
Definition: vtkEdgePoints.h:66
~vtkEdgePoints() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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.
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447