KdTreeTGetNearestNeighbours Method (Point3d, Double) |
Gets the neighbours within the specified distance.
Namespace:
Gile.AutoCAD.R20.Geometry
Assembly:
GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
Syntaxpublic List<T> GetNearestNeighbours(
Point3d point,
double radius
)
Public Function GetNearestNeighbours (
point As Point3d,
radius As Double
) As List(Of T)
public:
List<T>^ GetNearestNeighbours(
Point3d point,
double radius
)
member GetNearestNeighbours :
point : Point3d *
radius : float -> List<'T>
Parameters
- point
- Type: Point3d
The point from which search the nearest neighbours. - radius
- Type: SystemDouble
The distance in which collect the neighbours.
Return Value
Type:
ListT The objects which distance from the specified point is less or equal to the specified distance.
See Also