Back to project page SevenWonders.
The source code is released under:
Apache License
If you think the Android project SevenWonders listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package skylight1.sevenwonders.view; // w w w . j a v a 2 s.c om /** * A position in three dimensions. * */ public class Position { public float x, y, z; public Position(float anX, float aY, float aZ) { x = anX; y = aY; z = aZ; } public Position() { } @Override public String toString() { return String.format("%s: %f, %f, %f", this.getClass().getName(), x, y, z); } }