Back to project page NotATop.
The source code is released under:
GNU General Public License
If you think the Android project NotATop 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.gg.util; // w w w. j a va2s . c o m /* ???3D??????????? */ public class Point { public float x; public float y; public float z; public Point(float x, float y, float z){ this.x = x; this.y = y; this.z = z; } public Point(float x, float y){ this(x,y,0f); } }