Interface AbstractSTRtree<T, TItem>.IIntersectsOp
Namespace: NetTopologySuite.Index.Strtree
Assembly: NetTopologySuite.dll
Syntax
protected interface AbstractSTRtree<T, TItem>.IIntersectsOp
Methods
| Edit this page View SourceIntersects(T, T)
For STRtrees, the bounds will be Envelopes; for SIRtrees, Intervals; for other subclasses of AbstractSTRtree, some other class.
Declaration
bool Intersects(T aBounds, T bBounds)
Parameters
| Type | Name | Description |
|---|---|---|
| T | aBounds | The bounds of one spatial object. |
| T | bBounds | The bounds of another spatial object. |
Returns
| Type | Description |
|---|---|
| bool | Whether the two bounds intersect. |