Java 类com.vividsolutions.jts.geomgraph.index.MonotoneChainEdge 实例源码

项目:Earth    文件:Edge.java   
public MonotoneChainEdge getMonotoneChainEdge() {
    if (this.mce == null) {
        this.mce = new MonotoneChainEdge(this);
    }
    return this.mce;
}