-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvtkPMMaxDensityDataPointsFilter.h
More file actions
51 lines (34 loc) · 1.37 KB
/
vtkPMMaxDensityDataPointsFilter.h
File metadata and controls
51 lines (34 loc) · 1.37 KB
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
/*=========================================================================
Program: Lib Point Matcher Plugin for ParaView
Module: vtkPMMaxDensityDataPointsFilter.h
Copyright (c) Ellon Paiva Mendes
All rights reserved.
See LICENSE file for details.
=========================================================================*/
// .NAME vtkPMMaxDensityDataPointsFilter -
// .SECTION Description
//
#ifndef __vtkPMMaxDensityDataPointsFilter_h
#define __vtkPMMaxDensityDataPointsFilter_h
#include <vtkPolyDataAlgorithm.h>
#include <vtkPMFiltersModule.h>
class VTKPMFILTERS_EXPORT vtkPMMaxDensityDataPointsFilter : public vtkPolyDataAlgorithm
{
public:
vtkTypeMacro(vtkPMMaxDensityDataPointsFilter, vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkPMMaxDensityDataPointsFilter *New();
vtkSetMacro(MaxDensity, double);
vtkGetMacro(MaxDensity, double);
protected:
double MaxDensity;
virtual int RequestData(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
vtkPMMaxDensityDataPointsFilter();
virtual ~vtkPMMaxDensityDataPointsFilter();
private:
vtkPMMaxDensityDataPointsFilter(const vtkPMMaxDensityDataPointsFilter&); // Not implemented.
void operator=(const vtkPMMaxDensityDataPointsFilter&); // Not implemented.
};
#endif