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
25 #include "vtkPolyDataAlgorithm.h"
26 
27 VTK_ABI_NAMESPACE_BEGIN
28 class vtkMergePoints;
29 
30 class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
31 {
32 public:
34  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
39  static vtkEdgePoints* New();
40 
42 
45  vtkSetMacro(Value, double);
46  vtkGetMacro(Value, double);
48 
49 protected:
51  ~vtkEdgePoints() override;
52 
55 
56  double Value;
58 
59 private:
60  vtkEdgePoints(const vtkEdgePoints&) = delete;
61  void operator=(const vtkEdgePoints&) = delete;
62 };
63 
64 VTK_ABI_NAMESPACE_END
65 #endif
generate points on isosurface
Definition: vtkEdgePoints.h:31
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:57
~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: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.
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447