|  | CompressedAabbTreeGetOverlaps Method (Int32) | 
            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
Syntaxpublic IEnumerable<int> GetOverlaps(
	int item
)
Public Function GetOverlaps ( 
	item As Integer
) As IEnumerable(Of Integer)
public:
virtual IEnumerable<int>^ GetOverlaps(
	int item
) sealed
abstract GetOverlaps : 
        item : int -> IEnumerable<int> 
override GetOverlaps : 
        item : int -> IEnumerable<int> Parameters
- item
- Type: SystemInt32
 The item. (The given item must be part of the spatial partition. External items are not 
            supported.)
Return Value
Type: 
IEnumerableInt32All items that touch the given item.
Implements
ISpatialPartitionTGetOverlaps(T) Remarks
Remarks
            Filtering (see 
Filter) is applied to filter overlaps.
            
 See Also
See Also