Merge branch 'development' of http://www.github.com/sirjonasxx/G-Earth into development

This commit is contained in:
sirjonasxx 2019-02-02 13:49:28 +01:00
commit f461573a99

View File

@ -34,4 +34,9 @@ public class HPoint {
HPoint p = (HPoint) o;
return this.x == p.getX() && this.y == p.getY() && this.z == p.getZ();
}
@Override
public String toString() {
return "(" + this.getX() + "," + this.getY() + "," + this.getZ() + ")";
}
}