码迷,mamicode.com
首页 > 其他好文 > 详细

好代码(一)

时间:2014-12-18 11:38:00      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:sp   div   bs   代码   nbsp   htm   br   ht   编程   

摘自《OpenGL游戏编程》中的一段代码,根据坐标系当前点的位置(高度必须由计算得来,不是通过获取坐标点就能做到的)获得插值高度,是一种比较好的一种思想:
/** 获得地面当前点的插值高度 */
float getAveHeight(float x,float z)
{
     float CameraX, CameraZ;
     CameraX = x / m_nCellWidth;
     CameraZ = z / m_nCellWidth;
     /** 计算高程坐标(Col0, Row0),(Col1, Row1) */
     int col0 = int(CameraX);
     int row0 = int(CameraZ);
     unsigned int col1 = col0 + 1;
     unsigned int row1 = row0 + 1;
     /** 确保单元坐标不超过高程以外 */
     if (col1 > m_nWidth) col1 = 0;
     if (row1 > m_nWidth) row1 = 0;
     /** 获取单元的四个角的高度 */
     float h00 = (float)(m_pHeightMap[col0*m_nCellWidth + row0*m_nCellWidth*m_nWidth]);
     float h01 = (float)(m_pHeightMap[col1*m_nCellWidth + row0*m_nCellWidth*m_nWidth]);
     float h11 = (float)(m_pHeightMap[col1*m_nCellWidth + row1*m_nCellWidth*m_nWidth]);
     float h10 = (float)(m_pHeightMap[col0*m_nCellWidth + row1*m_nCellWidth*m_nWidth]);
     /** 计算机摄像机相对于单元格的位置 */
     float tx = CameraX - int(CameraX);
     float ty = CameraZ - int(CameraZ);
     /** 进行双线性插值得到地面高度 */
     float txty = tx * ty;
     float final_height     = h00 * (1.0f - ty - tx + txty)
                              + h01 * (tx - txty)
                              + h11 * txty
                              + h10 * (ty - txty);
     return final_height;
}
=============
     float tx = CameraX - int(CameraX);
     float ty = CameraZ - int(CameraZ);
实际上CameraX 和CameraZ 是两个浮点数,通过此种方式即可获得“计算机摄像机相对于单元格的位置”,之后通过“双线性插值”获得地面相对于坐标系原点的高度。

好代码(一)

标签:sp   div   bs   代码   nbsp   htm   br   ht   编程   

原文地址:http://www.cnblogs.com/QQ122252656/p/4171211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!