Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | 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   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 =========================================================================*/
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&);  // Not implemented.
00068   void operator=(const vtkEdgePoints&);  // Not implemented.
00069 };
00070 
00071 #endif
00072 
00073