我是靠谱客的博主 壮观机器猫,最近开发中收集的这篇文章主要介绍android opengles 中glMultMatrixf的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

glMultMatrixf 的作用是把当变换矩阵右乘到矩阵堆栈,简单说就是应用当前的变换矩阵。
float[] transMatrix= new float[]
{
1f,     0f,    0f,   0f,
0f,     1f,    0f,   0f,
0f,     0f,    1f,   0f,
offestx, offesty,  0f,  1f
};
gl.glMultMatrixf(transMatrix,0);

相当于gl.glTranslatef(offestx, offesty, 0);


float[] scaleMatrix = new float[]{

scalex, 0f, 0f, 0f,

0f, scaley, 0f, 0f, 

0f, 0f, 1f, 0f, 

0f, 0f, 0f, 1f };


gl.glMultMatrixf(scaleMatrix,0);
相当于 gl.glScalef(scalex,scaley, 1f);  


float[] rotateX_Matrix=new float[]{       
         1.0f, 0.0f, 0.0f, 0.0f,
  0.0f, (float) Math.cos(a), (float) -Math.sin(a), 0.0f,
  0.0f, (float) Math.sin(a), (float) Math.cos(a), 0.0f,
  offestx, offesty, 0f, 1f
};
gl.glMultMatrixf(rotateX_Matrix,0);
 
相当于 gl.glRotatef(a, 1f, 0, 0);
float[] rotateY_Matrix=new float[]{ (float) Math.cos(a),0.0f,(float) Math.sin(a),0.0f, 0.0f,1.0f,0.0f,0.0f, (float) -Math.sin(a),0.0f,(float) Math.cos(a),0.0f,offestx, offesty, 0f, 1f};
gl.glMultMatrixf(rotateY_Matrix,0);


相当于 gl.glRotatef(a, 0, 1f, 0);

float[] rotateZ_Matrix=new float[]{       
       (float) Math.cos(a), -(float) Math.sin(a), 0f, 0f,
       (float) Math.sin(a), (float) Math.cos(a), 0f, 0f,
        0f, 0f, 1f, 0f,
       offestx, offesty, 0f, 1f
 };
gl.glMultMatrixf(rotateZ_Matrix,0);


相当于 gl.glRotatef(a, 0, 0, 1f);


可以使用 opengles 的矩阵 来进行矩阵运算
float[] matrixArray = new float[16];
Matrix.setIdentityM(matrixArray, 0);
Matrix.translateM(matrixArray, 0, offestx + widthf / 2, offesty + heightf / 2, 0);
......
测了一下发现 不过这个和
gl.glTranslatef(offestx, offesty, 0);
gl.glScalef(scalex,scaley, 1f);
gl.glRotatef(a, 0, 0, 1f);
比较起来效率好像差不多。

最后

以上就是壮观机器猫为你收集整理的android opengles 中glMultMatrixf的使用的全部内容,希望文章能够帮你解决android opengles 中glMultMatrixf的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部