Rename ol.extent.segmentIntersects to intersectsSegment

This commit is contained in:
Éric Lemoine
2014-09-17 11:57:59 +02:00
parent 79445e993b
commit 72e173d925
3 changed files with 24 additions and 24 deletions

View File

@@ -40,7 +40,7 @@ ol.geom.flat.intersectsextent.lineString =
* `false` otherwise.
*/
function(point1, point2) {
return ol.extent.segmentIntersects(extent, point1, point2);
return ol.extent.intersectsSegment(extent, point1, point2);
});
};