Fix missing semi-colon in Geometry.js, pointed out by rod in trac.
(No functional change.) (Closes #1981) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9030 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -362,7 +362,7 @@ OpenLayers.Geometry.segmentsIntersect = function(seg1, seg2, options) {
|
|||||||
dist = Math.sqrt(
|
dist = Math.sqrt(
|
||||||
Math.pow(x - intersection.x, 2) +
|
Math.pow(x - intersection.x, 2) +
|
||||||
Math.pow(y - intersection.y, 2)
|
Math.pow(y - intersection.y, 2)
|
||||||
)
|
);
|
||||||
if(dist < tolerance) {
|
if(dist < tolerance) {
|
||||||
intersection.x = x;
|
intersection.x = x;
|
||||||
intersection.y = y;
|
intersection.y = y;
|
||||||
|
|||||||
Reference in New Issue
Block a user