mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
Merge branch 'development' of http://www.github.com/sirjonasxx/G-Earth into development
This commit is contained in:
commit
f461573a99
@ -34,4 +34,9 @@ public class HPoint {
|
|||||||
HPoint p = (HPoint) o;
|
HPoint p = (HPoint) o;
|
||||||
return this.x == p.getX() && this.y == p.getY() && this.z == p.getZ();
|
return this.x == p.getX() && this.y == p.getY() && this.z == p.getZ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "(" + this.getX() + "," + this.getY() + "," + this.getZ() + ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user