|
楼主 |
发表于 2011-5-12 12:40:12
|
显示全部楼层
回复 2# array
我觉得是类似的。在iOS系统中,TouchData是怎么存储的,每个touch事件映射到一个鼠标事件,每个GUIEventAdapter中的TouchData是怎么样的?能否给个例子。
比如,如果触摸两点
触摸事件 映射到的鼠标事件 GUIEventAdapter中_touchData
down PUSH touchPoint(id1,TOUCHBEGAN,x1,y1,0)
down PUSH touchPoint(id2,TOUCHBEGAN,x2,y2,0)??? 还有其他点吗?其他点是什么?
Move Drag touchPoint(id1,TOUCHMOVE,x3,y3,0) ???还有其他点吗?其他点是什么?
.
.
.
.
因为在MultiTouchTrackballManipulator中handle的时候,要从 data = ea.getTouchData();
此时这个data中有几个点,而_LastTouchData中又放的是哪些点?我有点晕,array能否给以指点。 |
|