Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkEdgePoints.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkEdgePoints.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00045 #ifndef __vtkEdgePoints_h
00046 #define __vtkEdgePoints_h
00047 
00048 #include "vtkDataSetToPolyDataFilter.h"
00049 
00050 class vtkMergePoints;
00051 
00052 class VTK_GRAPHICS_EXPORT vtkEdgePoints : public vtkDataSetToPolyDataFilter
00053 {
00054 public:
00055   vtkTypeRevisionMacro(vtkEdgePoints,vtkDataSetToPolyDataFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059   static vtkEdgePoints *New();
00060 
00062 
00063   vtkSetMacro(Value,double);
00064   vtkGetMacro(Value,double);
00066 
00067 protected:
00068   vtkEdgePoints();
00069   ~vtkEdgePoints();
00070 
00071   void Execute();
00072 
00073   double Value;
00074   vtkMergePoints *Locator;
00075 private:
00076   vtkEdgePoints(const vtkEdgePoints&);  // Not implemented.
00077   void operator=(const vtkEdgePoints&);  // Not implemented.
00078 };
00079 
00080 #endif
00081 
00082