博客
关于我
OpenGL之视图矩阵View Matrix
阅读量:348 次
发布时间:2019-03-04

本文共 1240 字,大约阅读时间需要 4 分钟。

OpenGL矩阵中有一个重要的矩阵,视图矩阵。

把物体从世界坐标系转化到视点坐标系的矩阵称为视图矩阵。

记录一下用过的经验。

视图矩阵有三组向量,分别是视点,观察点和Up向量。

视点,即眼睛观察的位置,x轴表示从x轴侧看,y轴表示从y轴斜看,z轴从z轴方向看.

z轴一般决定远近,物体的大小,值远大,观测的距离就越远,图形显示效果看着就越小。
x轴,y轴决定了物体的角度。

观察点,修改x,y轴,图像会沿x,y轴移动。z轴的值必须小于视点z轴的值,否则看不见图像。

Up向量,如果拿着相机,这就是我们的头部要指向的地方。范围为0.0f-1.0f,如果z轴为0,设置x轴和y轴,会使图像沿着z轴旋转。

/*** Store the view matrix. This can be thought of as our camera. This matrix transforms world space to eye space;* it positions things relative to our eye.*/private float[] mViewMatrix = new float[16];// Position the eye behind the origin.final float eyeX = 0.0f;final float eyeY = 0.0f;final float eyeZ = 20f;// We are looking toward the distancefinal float centerX = 0.0f;final float centerY = 0.0f;final float centerZ = 19.9f;// Set our up vector. This is where our head would be pointing were we holding the camera.final float upX = 0.5f;final float upY = 1.0f;final float upZ = 0.0f;// Set the view matrix. This matrix can be said to represent the camera position.// NOTE: In OpenGL 1, a ModelView matrix is used, which is a combination of a model and// view matrix. In OpenGL 2, we can keep track of these matrices separately if we choose.Matrix.setLookAtM(mViewMatrix, 0, eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ);

转载地址:http://fdre.baihongyu.com/

你可能感兴趣的文章
MYSQL、SQL Server、Oracle数据库排序空值null问题及其解决办法
查看>>
mysql一个字段为空时使用另一个字段排序
查看>>
MySQL一个表A中多个字段关联了表B的ID,如何关联查询?
查看>>
MYSQL一直显示正在启动
查看>>
MySQL一站到底!华为首发MySQL进阶宝典,基础+优化+源码+架构+实战五飞
查看>>
MySQL万字总结!超详细!
查看>>
Mysql下载以及安装(新手入门,超详细)
查看>>
MySQL不会性能调优?看看这份清华架构师编写的MySQL性能优化手册吧
查看>>
MySQL不同字符集及排序规则详解:业务场景下的最佳选
查看>>
Mysql不同官方版本对比
查看>>
MySQL与Informix数据库中的同义表创建:深入解析与比较
查看>>
mysql与mem_细说 MySQL 之 MEM_ROOT
查看>>
MySQL与Oracle的数据迁移注意事项,另附转换工具链接
查看>>
mysql丢失更新问题
查看>>
MySQL两千万数据优化&迁移
查看>>
MySql中 delimiter 详解
查看>>
MYSQL中 find_in_set() 函数用法详解
查看>>
MySQL中auto_increment有什么作用?(IT枫斗者)
查看>>
MySQL中B+Tree索引原理
查看>>
mysql中cast() 和convert()的用法讲解
查看>>