Back to project page Thrift-box.
The source code is released under:
GNU General Public License
If you think the Android project Thrift-box 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.github.mikephil.charting.utils; //from w w w. j av a2 s . c o m /** * Point encapsulating two double values. * * @author Philipp Jahoda */ public class PointD { public double x; public double y; public PointD(double x, double y) { this.x = x; this.y = y; } /** returns a string representation of the object */ public String toString() { return "PointD, x: " + x + ", y: " + y; } }