Package org.geotools.geometry.iso.util.algorithm2D

Examples of org.geotools.geometry.iso.util.algorithm2D.RobustLineIntersector


    // TODO auskommentiert; checken!
    // if (geom.isEmpty())
    // return true;

    GeometryGraph graph = new GeometryGraph(0, geom);
    LineIntersector li = new RobustLineIntersector();
    SegmentIntersector si = graph.computeSelfNodes(li, true);
    // if no self-intersection, must be simple
   
    // Primitives can be simple even if their boundary intersect
    // Complexes are not simple if their boundary intersect
View Full Code Here

TOP

Related Classes of org.geotools.geometry.iso.util.algorithm2D.RobustLineIntersector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.