尝试翻译时图表消失了

时间:2017-01-15 11:36:57

标签: android opengl-es

我在Android中使用OpenGLES 2.0。我需要通过触摸事件中的x和y轴移动OpenGL对象。但是,当我尝试翻译对象时,它的行为很奇怪。相同的对象在不同的​​不透明度的两个地方显示..当手指被抬起时,两个对象都消失了。

我的翻译代码是:

 Matrix.setIdentityM(mtrxView, 0);
 Matrix.translateM(mtrxView, 0, x, y, 0);
 Matrix.multiplyMM(mtrxProjectionAndView, 0, mtrxProjection, 0, mtrxView, 0);

我重写onTouch()方法来处理ACTION_MOVE事件:

 public boolean onTouch(View v, MotionEvent ev) {

        x = ev.getX();
        y = ev.getY();
        deltaX = x - downX;
        deltaY = y - downY;
        mScaleDetector.onTouchEvent(ev);
        AppLog.v(TAG, "Screen xy cordinate is: " + x + " " + y + " ");
        final int action = MotionEventCompat.getActionMasked(ev);

        switch (action) {

            case MotionEvent.ACTION_UP:

                break;
            case MotionEvent.ACTION_DOWN:

                break;
            case MotionEvent.ACTION_MOVE:

                if(!isZoomInProcess){

                    glRender.requestRender(x, y,GlSurfaceView.this);
                    requestRender();
                }
                break;

        }

        return true;
    }

0 个答案:

没有答案