using GeoAPI.Geometries; namespace GisSharpBlog.NetTopologySuite.Algorithm { /// /// An interface for classes which test whether a Coordinate lies inside a ring. /// public interface IPointInRing { /// /// /// /// /// bool IsInside(ICoordinate pt); } }