310311312313314315316317318319320
* 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; }