Interface IIntersectable<T>
Interface describing objects that can perform an intersects predicate with T
objects.
Namespace: NetTopologySuite.Geometries
Assembly: NetTopologySuite.dll
Syntax
public interface IIntersectable<in T>
Type Parameters
Name | Description |
---|---|
T | The type of the component that can intersect |
Methods
| Improve this Doc View SourceIntersects(T)
Predicate function to test if other
intersects with this object.
Declaration
bool Intersects(T other)
Parameters
Type | Name | Description |
---|---|---|
T | other | The object to test |
Returns
Type | Description |
---|---|
Boolean |
|