Node3dTFurthestItem Method (Point3d, Double, Double) |
Find the furtest item.
Namespace:
Grasshopper.Kernel.Geometry.SpatialTrees
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public Index3d<T> FurthestItem(
Point3d locus,
double minimumDistance,
double maximumDistance
)
Public Function FurthestItem (
locus As Point3d,
minimumDistance As Double,
maximumDistance As Double
) As Index3d(Of T)
Parameters
- locus
- Type: Point3d
Location to search from. - minimumDistance
- Type: SystemDouble
Minimum distance for furtest item. Items closer than minimumDistance will be ignored. - maximumDistance
- Type: SystemDouble
Maximum distance for furtest item. Items further than maximumDistance will be ignored.
Return Value
Type:
Index3dTThe index of the furtest item or null if no furtest item could be found.
See Also