VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filtering
vtkMergePoints.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkMergePoints.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
=========================================================================*/
29
#ifndef __vtkMergePoints_h
30
#define __vtkMergePoints_h
31
32
#include "
vtkPointLocator.h
"
33
34
class
VTK_FILTERING_EXPORT
vtkMergePoints
:
public
vtkPointLocator
35
{
36
public
:
37
static
vtkMergePoints
*
New
();
38
vtkTypeMacro(
vtkMergePoints
,
vtkPointLocator
);
39
void
PrintSelf
(ostream& os,
vtkIndent
indent);
40
42
45
vtkIdType
IsInsertedPoint
(
const
double
x[3]);
46
vtkIdType
IsInsertedPoint
(
double
x,
double
y,
double
z)
47
{
return
this->
vtkPointLocator::IsInsertedPoint
(x, y, z); };
49
56
int
InsertUniquePoint
(
const
double
x[3],
vtkIdType
&ptId);
57
58
protected
:
59
vtkMergePoints
() {};
60
~vtkMergePoints
() {};
61
62
private
:
63
vtkMergePoints
(
const
vtkMergePoints
&);
// Not implemented.
64
void
operator=(
const
vtkMergePoints
&);
// Not implemented.
65
};
66
67
#endif
68
69
Generated on Sun Sep 15 2013 03:44:22 for VTK by
1.8.4