VTK
vtkNonMergingPointLocator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkNonMergingPointLocator.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
33 #ifndef vtkNonMergingPointLocator_h
34 #define vtkNonMergingPointLocator_h
35 
36 #include "vtkCommonDataModelModule.h" // For export macro
37 #include "vtkPointLocator.h"
38 
39 class vtkPoints;
40 
42 {
43 public:
44  static vtkNonMergingPointLocator * New();
45 
47  void PrintSelf( ostream & os, vtkIndent indent );
48 
49 //BTX
51 
55  virtual vtkIdType IsInsertedPoint( const double [3] ) { return -1; }
56  virtual vtkIdType IsInsertedPoint( double, double, double ) { return -1; }
57 //ETX
59 
64  virtual int InsertUniquePoint( const double x[3], vtkIdType & ptId );
65 
66 protected:
69 
70 private:
71  vtkNonMergingPointLocator( const vtkNonMergingPointLocator & ); // Not implemented.
72  void operator = ( const vtkNonMergingPointLocator & ); // Not implemented.
73 };
74 
75 #endif
76 
77 
quickly locate points in 3-space
direct / check-free point insertion.
int vtkIdType
Definition: vtkType.h:275
static vtkPointLocator * New()
void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual vtkIdType IsInsertedPoint(const double[3])
virtual int InsertUniquePoint(const double x[3], vtkIdType &ptId)
#define VTKCOMMONDATAMODEL_EXPORT
virtual vtkIdType IsInsertedPoint(double, double, double)
represent and manipulate 3D points
Definition: vtkPoints.h:38