Point3dTreeGetNearestNeighbours Method (Point3d, Double) |
Gets the neighbours within the specified distance.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic Point3dCollection GetNearestNeighbours(
Point3d point,
double radius
)
Public Function GetNearestNeighbours (
point As Point3d,
radius As Double
) As Point3dCollection
public:
Point3dCollection^ GetNearestNeighbours(
Point3d point,
double radius
)
member GetNearestNeighbours :
point : Point3d *
radius : float -> Point3dCollection
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:
Point3dCollectionThe points which distance from the specified point is less or equal to the specified distance.
See Also