VTK  9.2.6
vtkDistancePolyDataFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDistancePolyDataFilter.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 =========================================================================*/
59 #ifndef vtkDistancePolyDataFilter_h
60 #define vtkDistancePolyDataFilter_h
61 
62 #include "vtkFiltersGeneralModule.h" // For export macro
63 #include "vtkPolyDataAlgorithm.h"
64 
65 class VTKFILTERSGENERAL_EXPORT vtkDistancePolyDataFilter : public vtkPolyDataAlgorithm
66 {
67 public:
70  void PrintSelf(ostream& os, vtkIndent indent) override;
71 
73 
77  vtkSetMacro(SignedDistance, vtkTypeBool);
78  vtkGetMacro(SignedDistance, vtkTypeBool);
79  vtkBooleanMacro(SignedDistance, vtkTypeBool);
81 
83 
87  vtkSetMacro(NegateDistance, vtkTypeBool);
88  vtkGetMacro(NegateDistance, vtkTypeBool);
89  vtkBooleanMacro(NegateDistance, vtkTypeBool);
91 
93 
97  vtkSetMacro(ComputeSecondDistance, vtkTypeBool);
98  vtkGetMacro(ComputeSecondDistance, vtkTypeBool);
99  vtkBooleanMacro(ComputeSecondDistance, vtkTypeBool);
101 
109 
111 
118  vtkSetMacro(ComputeCellCenterDistance, vtkTypeBool);
119  vtkGetMacro(ComputeCellCenterDistance, vtkTypeBool);
120  vtkBooleanMacro(ComputeCellCenterDistance, vtkTypeBool);
122 
123 protected:
126 
129 
130 private:
132  void operator=(const vtkDistancePolyDataFilter&) = delete;
133 
134  vtkTypeBool SignedDistance;
135  vtkTypeBool NegateDistance;
136  vtkTypeBool ComputeSecondDistance;
137  vtkTypeBool ComputeCellCenterDistance;
138 };
139 
140 #endif
Computes the signed distance from one vtkPolyData to another.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkDistancePolyDataFilter * New()
vtkPolyData * GetSecondDistanceOutput()
Get the second output, which is a copy of the second input with an additional distance scalar field.
void GetPolyDataDistance(vtkPolyData *, vtkPolyData *)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkDistancePolyDataFilter() override
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200
int vtkTypeBool
Definition: vtkABI.h:69