Fix Point distance

This commit is contained in:
Emux 2017-09-08 20:42:33 +03:00
parent 3449bd86e8
commit abc1867d7c

View File

@ -1,5 +1,6 @@
/*
* Copyright 2013 Hannes Janetzek
* Copyright 2017 devemux86
*
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
*
@ -37,11 +38,11 @@ public class Point {
}
public double distance(Point other) {
return Math.sqrt((x - other.x) * (x - other.x) + (y - other.y) + (y - other.y));
return Math.sqrt((x - other.x) * (x - other.x) + (y - other.y) * (y - other.y));
}
public double distanceSq(Point other) {
return (x - other.x) * (x - other.x) + (y - other.y) + (y - other.y);
return (x - other.x) * (x - other.x) + (y - other.y) * (y - other.y);
}
@Override