VTK  9.3.20240419
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
40 #ifndef vtkEdgePoints_h
41 #define vtkEdgePoints_h
42 
43 #include "vtkFiltersGeneralModule.h" // For export macro
44 #include "vtkPolyDataAlgorithm.h"
45 
46 VTK_ABI_NAMESPACE_BEGIN
47 class vtkMergePoints;
48 
49 class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
50 {
51 public:
53  void PrintSelf(ostream& os, vtkIndent indent) override;
54 
58  static vtkEdgePoints* New();
59 
61 
64  vtkSetMacro(Value, double);
65  vtkGetMacro(Value, double);
67 
68 protected:
70  ~vtkEdgePoints() override;
71 
74 
75  double Value;
77 
78 private:
79  vtkEdgePoints(const vtkEdgePoints&) = delete;
80  void operator=(const vtkEdgePoints&) = delete;
81 };
82 
83 VTK_ABI_NAMESPACE_END
84 #endif
generate points on isosurface
Definition: vtkEdgePoints.h:50
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:76
~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:108
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