Back to project page FooTD.
The source code is released under:
GNU General Public License
If you think the Android project FooTD 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 org.android.footd; //from ww w. j a va 2 s . c o m public class FloatPoint { public float x; public float y; public FloatPoint(float x, float y) { super(); this.x = x; this.y = y; } }