VTK  9.1.0
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=========================================================================*/
30#ifndef vtkEdgePoints_h
31#define vtkEdgePoints_h
32
33#include "vtkFiltersGeneralModule.h" // For export macro
35
36class vtkMergePoints;
37
38class VTKFILTERSGENERAL_EXPORT vtkEdgePoints : public vtkPolyDataAlgorithm
39{
40public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
47 static vtkEdgePoints* New();
48
50
53 vtkSetMacro(Value, double);
54 vtkGetMacro(Value, double);
56
57protected:
59 ~vtkEdgePoints() override;
60
62 int FillInputPortInformation(int port, vtkInformation* info) override;
63
64 double Value;
66
67private:
68 vtkEdgePoints(const vtkEdgePoints&) = delete;
69 void operator=(const vtkEdgePoints&) = delete;
70};
71
72#endif
generate points on isosurface
Definition: vtkEdgePoints.h:39
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:65
~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:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
merge exactly coincident points
Superclass for algorithms that produce only polydata as output.