| CompressedAabbTreeGetOverlaps Method (Aabb) |
Gets the items that touch the given axis-aligned bounding box (AABB).
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public IEnumerable<int> GetOverlaps(
Aabb aabb
)
Public Function GetOverlaps (
aabb As Aabb
) As IEnumerable(Of Integer)
public:
virtual IEnumerable<int>^ GetOverlaps(
Aabb aabb
) sealed
abstract GetOverlaps :
aabb : Aabb -> IEnumerable<int>
override GetOverlaps :
aabb : Aabb -> IEnumerable<int>
Parameters
- aabb
- Type: DigitalRune.Geometry.ShapesAabb
The axis-aligned bounding box (AABB).
Return Value
Type:
IEnumerableInt32All items that touch the given AABB.
Implements
ISpatialPartitionTGetOverlaps(Aabb)Remarks
Filtering (see
Filter) is not applied.
See Also