我尝试在我的 GLSurfaceView 上使用 setRotation(),但视图似乎没有围绕作为屏幕中心的枢轴旋转。如下代码:
class MyGLSurfaceView extends GLSurfaceView {
private float mCurRotation = 0.0f;
@Override
public boolean onTouchEvent(MotionEvent e) {
mCurRotation = mCurRotation + 10;
setRotation(mCurRotation);
}
}
有没有人知道原因并教我如何旋转我的 GLSurfaceView?