Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Graphics/vtkEdgePoints.h

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