Back to project page Flight-Computer-Android-Flightradar24.
The source code is released under:
GNU General Public License
If you think the Android project Flight-Computer-Android-Flightradar24 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.flightcomputer.utilities; /*ww w. ja va2 s .c o m*/ import android.graphics.PointF; public class Point2d { public double x; public double y; public Point2d(double x, double y) { this.x = x; this.y = y; } public Point2d(PointF p) { this.x = p.x; this.y = p.y; } public Point2d() { } public double getX() { return x; } public double getY() { return y; } }