I hava found that "gl_NormalMatrix - 3x3 Matrix representing the inverse transpose model-view matrix". Why matrix for normals must be inverse transpose model-view matrix. Why I cannot use simply model-view matrix for this purpose?
|
|
Have a look at this ( http://www.cs.uaf.edu/2007/spring/cs481/lecture/01_23_matrices.html ) see bottom. It explains the issue pretty well. |
|||
|
|
|
|
||||
|
|
|
It is because the normal is a vector, which is a direction without a position... or at least a direction at any position. The top left 3 x 3 matrix of your normal 4 x 4 modelView matrix contains the rotation component of the modelView matrix. By applying the 3 x 3 you alter the direction of the normal vector. The 4th column of the ModelView matrix contains the translation component, and it makes no sense to be applying a change in position to a vector... a vector does not have a position. The 4 x 4 modelView matrix is required for points as these do have a position. |
|||
|
|
|
Well, Normals should not be affected by translation, so I would say that it has to do with putting the model-view matrix to the origin in order to use just the rotation and scaling aspects of the matrix to calculate the normals. |
|||
|