Back to project page jmini3d.
The source code is released under:
Copyright 2012 Mobialia http://www.mobialia.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to ...
If you think the Android project jmini3d 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 jmini3d.input; /*from w ww . j a va2s .co m*/ public class TouchPointer { public final static int TOUCH_DOWN = 0; public final static int TOUCH_MOVE = 1; public final static int TOUCH_UP = 2; public int x; public int y; public int status; @Override public String toString() { return "TouchPointer [x=" + x + ", y=" + y + ", status=" + status + "]"; } }