| CompressedAabbTreeGetOverlaps Method (ISpatialPartitionInt32) |
Gets overlaps between all items of this spatial partition and the items of another spatial
partition.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public IEnumerable<Pair<int>> GetOverlaps(
ISpatialPartition<int> otherPartition
)
Public Function GetOverlaps (
otherPartition As ISpatialPartition(Of Integer)
) As IEnumerable(Of Pair(Of Integer))
public:
virtual IEnumerable<Pair<int>>^ GetOverlaps(
ISpatialPartition<int>^ otherPartition
) sealed
abstract GetOverlaps :
otherPartition : ISpatialPartition<int> -> IEnumerable<Pair<int>>
override GetOverlaps :
otherPartition : ISpatialPartition<int> -> IEnumerable<Pair<int>>
Parameters
- otherPartition
- Type: DigitalRune.Geometry.PartitioningISpatialPartitionInt32
The spatial partition to test against.
Return Value
Type:
IEnumerablePairInt32
All pairwise overlaps between items of this spatial partition and
otherPartition. In each returned
PairT the first item
(see
First) is from this partition and the second item (see
Second) is from
otherPartition.
Implements
ISpatialPartitionTGetOverlaps(ISpatialPartitionT)Exceptions Remarks
Filtering (see Filter) is applied to filter overlaps.
See Also