VTK  9.2.5
vtkEdgePoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkEdgePoints.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
52 #ifndef vtkEdgePoints_h
53 #define vtkEdgePoints_h
54 
55 #include "vtkFiltersGeneralModule.h" // For export macro
56 #include "vtkPolyDataAlgorithm.h"
57 
58 class vtkMergePoints;
59 
60 class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
61 {
62 public:
64  void PrintSelf(ostream& os, vtkIndent indent) override;
65 
69  static vtkEdgePoints* New();
70 
72 
75  vtkSetMacro(Value, double);
76  vtkGetMacro(Value, double);
78 
79 protected:
81  ~vtkEdgePoints() override;
82 
85 
86  double Value;
88 
89 private:
90  vtkEdgePoints(const vtkEdgePoints&) = delete;
91  void operator=(const vtkEdgePoints&) = delete;
92 };
93 
94 #endif
generate points on isosurface
Definition: vtkEdgePoints.h:61
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:87
~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:119
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:382
@ port
Definition: vtkX3D.h:453