opengl 法向量变换矩阵推导

When lighting is enabled in OpenGL, the normal vectors are used to determine how much light is received at the specified vertex or surface. This lighting processing is performed at eye coordinate space, therefore, normal vectors in object coordinates are also transformed to eye coordinates with GL_MODELVIEW matrix.

当opengl中启动了光照功能后,法向量决定了顶点或者表面接收到了多少光。光照处理过程是在eye coordinate space眼睛坐标空间,因此,法向量也需要使用GL_MODELVIEW 转换到眼睛坐标空间。


However, normals vectors are transformed in different way as vertices do. We cannot simply multiply GL_MODELVIEW matrix and normal. Consider a normal vector (1,0,0) at vertex (0,0,0). If GL_MODELVIEW matrix is simply translating 2 unit up along Y-axis, then the vertex coordinates will be (0,2,0). But, the normal should be remain same as (1,0,0), not (1,2,0).

然而,法向量和顶点一样,每个变换矩阵不完全一样,不能简单地乘以GL_MODELVIEW 就可以了。例如顶点vertex(0,0,0)的法向量vector(1,0,0),如果GL_MODELVIEW 矩阵仅仅沿着y轴平移两个单元,那么顶点坐标变成了(0,2,0),但是法向量依然是(1,0,0)而不是(1,2,0)。

In order to understand how normal vectors are transformed to eye space, think the normals as coefficients of plane equations, which are perpendicular to the planes.

OpenGL Normal Vector 
OpenGL Normal Vector

Imagine a triangle polygon with 3 vertices; v1-v2-v3, and the normal of this surface is  as a homogeneous plane. (For Euclidean space, the normal is .) If we think of the triangle as a homogeneous plane, then the plane equation becomes; (by replacing x, y, z to x/w, y/w, z/w, then multiplying w on both sides) 

Since 3 vertices lie on this plane, the plane equation is also true when we substitute these vertices to the equation. For example, for , it satisfies; 

The equivalent matrix form of the plane equation is; 
matrix form of plane equation

The plane equation is multiplying the transposed normal (nT) and the vertex together. 
Now, we modify the above equation to acquire normal vector transformation formula by inserting GL_MODELVIEW matrix M-1M in between; 
(the following equation is still equivalent to the above because M-1M is identity matrix.) 

As you can see, the right part of the above equation  is transforming vertex to eye space, and the left part is going to be the normal vector in eye space because the plane equation is also transformed. It reads as "The transformed vertex  lies on the transformed plane  in eye coordinates space".

Therefore, transforming normal from object space to eye space with GL_MODELVIEW matrix M is; 
Transforming Normal

Or, by converting pre-multiplication to post-multiplication form, we get; 
Transforming normals

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值