Back to project page InfoSecProj.
The source code is released under:
MIT License
If you think the Android project InfoSecProj 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.infosec.gesturedata; /* w w w. j av a2s .co m*/ public class Point { public float x; public float y; public float z; public Point() { } public Point(float x, float y, float z) { this.x = x; this.y = y; this.z = z; } public void set(float x, float y, float z) { this.x = x; this.y = y; this.z = z; } }