Back to project page AndroSol.
The source code is released under:
MIT License
If you think the Android project AndroSol 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 lib.cards.utilities; /* w ww.j av a2s.co m*/ public class Point { public Point() { this(0, 0); } public Point(double x, double y) { this.x = x; this.y = y; } public double x; public double y; }