想要在触摸事件上旋转min3d库的三维图像

时间:2012-05-30 11:51:53

标签: android 3d image-rotation min3d

我从google.com获得了样本min3d library代码和示例。

它工作得很完美,甚至可以处理变化的图像。

现在我想用触摸事件旋转.obj文件,例如用手指触摸旋转汽车。 因为它在gl.rotation方法中使用动画对象,这有点难以理解。 我不知道怎么做,请给我解决方案..

1 个答案:

答案 0 :(得分:0)

您可以按以下方式添加触摸事件

public boolean onTouchEvent(MotionEvent e) {
  //Your code goes here
  return true;
}

如果您不确定如何轮播触摸事件,可以点击此链接https://code.google.com/p/min3d/issues/detail?id=70