Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class 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 
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 =========================================================================*/
00032 #ifndef __vtkEdgePoints_h
00033 #define __vtkEdgePoints_h
00034 
00035 #include "vtkDataSetToPolyDataFilter.h"
00036 
00037 class vtkMergePoints;
00038 
00039 class VTK_GRAPHICS_EXPORT vtkEdgePoints : public vtkDataSetToPolyDataFilter
00040 {
00041 public:
00042   vtkTypeRevisionMacro(vtkEdgePoints,vtkDataSetToPolyDataFilter);
00043   void PrintSelf(ostream& os, vtkIndent indent);
00044 
00046   static vtkEdgePoints *New();
00047 
00049 
00050   vtkSetMacro(Value,double);
00051   vtkGetMacro(Value,double);
00053 
00054 protected:
00055   vtkEdgePoints();
00056   ~vtkEdgePoints();
00057 
00058   void Execute();
00059 
00060   double Value;
00061   vtkMergePoints *Locator;
00062 private:
00063   vtkEdgePoints(const vtkEdgePoints&);  // Not implemented.
00064   void operator=(const vtkEdgePoints&);  // Not implemented.
00065 };
00066 
00067 #endif
00068 
00069