Back to project page graph-android.
The source code is released under:
GNU General Public License
If you think the Android project graph-android 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 lorian.graph.function; /*from w w w . ja v a2s . c om*/ public class PointXY { private double X, Y; public PointXY() { setX(0); setY(0); } public PointXY(double x,double y) { setX(x); setY(y); } public double getY() { return Y; } public void setY(double y) { Y = y; } public double getX() { return X; } public void setX(double x) { X = x; } @Override public String toString() { return String.format("%s[x=%f,y=%f]", this.getClass().getName(), X, Y); } }