dox/Graphics/vtkEdgePoints.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00036
#ifndef __vtkEdgePoints_h
00037
#define __vtkEdgePoints_h
00038
00039
#include "vtkDataSetToPolyDataFilter.h"
00040
00041
class vtkMergePoints;
00042
00043 class VTK_GRAPHICS_EXPORT vtkEdgePoints :
public vtkDataSetToPolyDataFilter
00044 {
00045
public:
00046 vtkTypeRevisionMacro(vtkEdgePoints,
vtkDataSetToPolyDataFilter);
00047
void PrintSelf(ostream& os,
vtkIndent indent);
00048
00050
static vtkEdgePoints *
New();
00051
00053
00054 vtkSetMacro(Value,
float);
00055 vtkGetMacro(Value,
float);
00057
00058
protected:
00059 vtkEdgePoints();
00060 ~vtkEdgePoints();
00061
00062
void Execute();
00063
00064 float Value;
00065 vtkMergePoints *Locator;
00066
private:
00067 vtkEdgePoints(
const vtkEdgePoints&);
00068
void operator=(
const vtkEdgePoints&);
00069 };
00070
00071
#endif
00072
00073