| AabbTreeTGetOverlaps 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 override IEnumerable<T> GetOverlaps(
Aabb aabb
)
Public Overrides Function GetOverlaps (
aabb As Aabb
) As IEnumerable(Of T)
public:
virtual IEnumerable<T>^ GetOverlaps(
Aabb aabb
) override
abstract GetOverlaps :
aabb : Aabb -> IEnumerable<'T>
override GetOverlaps :
aabb : Aabb -> IEnumerable<'T>
Parameters
- aabb
- Type: DigitalRune.Geometry.ShapesAabb
The axis-aligned bounding box (AABB).
Return Value
Type:
IEnumerableTAll items that touch the given AABB.
Implements
ISpatialPartitionTGetOverlaps(Aabb)Remarks
Filtering (see
Filter) is not applied.
See Also