9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 11:09:06 +00:00

Revert "f"

This reverts commit def658ccc6.
This commit is contained in:
cyberpwn
2021-11-12 21:27:03 -05:00
parent def658ccc6
commit 2d0df240f4
5 changed files with 32 additions and 37 deletions

View File

@@ -80,7 +80,7 @@ public class Position2 {
}
public double distance(Position2 center) {
return Math.pow(center.getX() - x, 2) + Math.pow(center.getZ() - z, 2);
return Math.sqrt(Math.pow(center.getX() - x, 2) + Math.pow(center.getZ() - z, 2));
}
public Position2 add(int x, int z) {