Point3dTreeGetNearestNeighbours Method (Point3d, Int32) |
Gets the given number of nearest neighbours.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic Point3dCollection GetNearestNeighbours(
Point3d point,
int number
)
Public Function GetNearestNeighbours (
point As Point3d,
number As Integer
) As Point3dCollection
public:
Point3dCollection^ GetNearestNeighbours(
Point3d point,
int number
)
member GetNearestNeighbours :
point : Point3d *
number : int -> Point3dCollection
Parameters
- point
- Type: Point3d
The point from which search the nearest neighbours. - number
- Type: SystemInt32
The number of points to collect.
Return Value
Type:
Point3dCollectionThe n nearest neighbours of the specified point.
See Also