Interface IIntersectable<T>
- Namespace
- NetTopologySuite.Geometries
- Assembly
- NetTopologySuite.dll
Interface describing objects that can perform an intersects predicate with T objects.
public interface IIntersectable<in T>
Type Parameters
TThe type of the component that can intersect
Methods
Intersects(T)
Predicate function to test if other intersects with this object.
bool Intersects(T other)
Parameters
otherTThe object to test
Returns
- bool
trueif this objects intersects withother