Package org.geotools.geometry.iso.topograph2D

Examples of org.geotools.geometry.iso.topograph2D.EdgeRing.containsPoint()


   * any of them contain the point.
   */
  public boolean containsPoint(Coordinate p) {
    for (Iterator it = shellList.iterator(); it.hasNext();) {
      EdgeRing er = (EdgeRing) it.next();
      if (er.containsPoint(p))
        return true;
    }
    return false;
  }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.