-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvtkPMSurfaceNormalDataPointsFilter.h
75 lines (52 loc) · 1.95 KB
/
vtkPMSurfaceNormalDataPointsFilter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*=========================================================================
Program: Lib Point Matcher Plugin for ParaView
Module: vtkPMSurfaceNormalDataPointsFilter.h
Copyright (c) Ellon Paiva Mendes
All rights reserved.
See LICENSE file for details.
=========================================================================*/
// .NAME vtkPMSurfaceNormalDataPointsFilter -
// .SECTION Description
//
#ifndef __vtkPMSurfaceNormalDataPointsFilter_h
#define __vtkPMSurfaceNormalDataPointsFilter_h
#include <vtkPolyDataAlgorithm.h>
#include <vtkPMFiltersModule.h>
class VTKPMFILTERS_EXPORT vtkPMSurfaceNormalDataPointsFilter : public vtkPolyDataAlgorithm
{
public:
vtkTypeMacro(vtkPMSurfaceNormalDataPointsFilter, vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkPMSurfaceNormalDataPointsFilter *New();
vtkSetMacro(Knn, unsigned);
vtkGetMacro(Knn, unsigned);
vtkSetMacro(Epsilon, double);
vtkGetMacro(Epsilon, double);
vtkSetMacro(KeepNormals, bool);
vtkGetMacro(KeepNormals, bool);
vtkSetMacro(KeepDensities, bool);
vtkGetMacro(KeepDensities, bool);
vtkSetMacro(KeepEigenValues, bool);
vtkGetMacro(KeepEigenValues, bool);
vtkSetMacro(KeepEigenVectors, bool);
vtkGetMacro(KeepEigenVectors, bool);
vtkSetMacro(KeepMatchedIds, bool);
vtkGetMacro(KeepMatchedIds, bool);
protected:
unsigned Knn;
double Epsilon;
bool KeepNormals;
bool KeepDensities;
bool KeepEigenValues;
bool KeepEigenVectors;
bool KeepMatchedIds;
virtual int RequestData(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
vtkPMSurfaceNormalDataPointsFilter();
virtual ~vtkPMSurfaceNormalDataPointsFilter();
private:
vtkPMSurfaceNormalDataPointsFilter(const vtkPMSurfaceNormalDataPointsFilter&); // Not implemented.
void operator=(const vtkPMSurfaceNormalDataPointsFilter&); // Not implemented.
};
#endif