| ISpatialPartitionTGetOverlaps Method (T) |
Gets the items that touch the given item.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax IEnumerable<T> GetOverlaps(
T item
)
Function GetOverlaps (
item As T
) As IEnumerable(Of T)
IEnumerable<T>^ GetOverlaps(
T item
)
abstract GetOverlaps :
item : 'T -> IEnumerable<'T>
Parameters
- item
- Type: T
The item. (The given item must be part of the spatial partition. In some cases external
objects are also supported. See documentation of derived types.)
Return Value
Type:
IEnumerableTAll items that touch the given item.
Remarks
Filtering (see
Filter) is applied to filter overlaps.
See Also