• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

dox/Rendering/vtkCoincidentPoints.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkCoincidentPoints.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 =========================================================================*/
00015 /*-------------------------------------------------------------------------
00016   Copyright 2008 Sandia Corporation.
00017   Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00018   the U.S. Government retains certain rights in this software.
00019 -------------------------------------------------------------------------*/
00029 #ifndef __vtkCoincidentPoints_h
00030 #define __vtkCoincidentPoints_h
00031 
00032 #include "vtkObject.h"
00033 
00034 class vtkIdList;
00035 class vtkPoints;
00036 
00037 class VTK_RENDERING_EXPORT vtkCoincidentPoints : public vtkObject
00038 {
00039 public:
00040   static vtkCoincidentPoints* New();
00041   vtkTypeRevisionMacro(vtkCoincidentPoints,vtkObject);
00042   virtual void PrintSelf( ostream& os, vtkIndent indent );
00043 
00049   void AddPoint(vtkIdType Id, const double point[3]);
00050 
00054   vtkIdList * GetCoincidentPointIds(const double point[3]);
00055 
00058   vtkIdList * GetNextCoincidentPointIds();
00059 
00061   void InitTraversal();
00062 
00065   void RemoveNonCoincidentPoints();
00066 
00067   //BTX
00068   class implementation;
00069 
00070   implementation * GetImplementation() { return this->Implementation; }
00071   //ETX
00072 
00073 protected:
00074   vtkCoincidentPoints();
00075   virtual ~vtkCoincidentPoints();
00076 
00077 private:
00078   vtkCoincidentPoints( const vtkCoincidentPoints& ); // Not implemented.
00079   void operator = ( const vtkCoincidentPoints& ); // Not implemented.
00080 
00081   //BTX
00082   implementation* Implementation;
00083 
00084   friend class implementation;
00085   //ETX
00086 };
00087 
00088 #endif // __vtkCoincidentPoints_h

Generated by  doxygen 1.7.1