namespace GisSharpBlog.NetTopologySuite.GeometriesGraph.Index { /// /// /// public class MonotoneChain { private MonotoneChainEdge mce; private int chainIndex; /// /// /// /// /// public MonotoneChain(MonotoneChainEdge mce, int chainIndex) { this.mce = mce; this.chainIndex = chainIndex; } /// /// /// /// /// public void ComputeIntersections(MonotoneChain mc, SegmentIntersector si) { this.mce.ComputeIntersectsForChain(chainIndex, mc.mce, mc.chainIndex, si); } } }