Back to project page Airplanes.
The source code is released under:
GNU General Public License
If you think the Android project Airplanes 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 com.axnsan.airplanes.util; // w w w . j av a 2 s . com public class Point2D { public int x, y; public Point2D() {} public Point2D(int x, int y) { this.x = x; this.y = y; } @Override public String toString() { return x + ";" + y + ";"; } }