Hello, I'm trying to apply a transform to a 3D object in a STL File (without creating a structured mesh object). Here is how I proceed: I read the normals and faces information one by one in the STL file, apply my transform to each vertex and to the face normal and write back the new computed values in another STL file. The vertex are OK in the generated file but my normals are wrong. It seems that I can't just apply my transform to the normal as I do for the vertice. How is that possible??
|
|
You should look at transforming normals. And actually, Jeff, you're only partly correct. For a vector, you're right. But for a normal, which is a bit different in meaning, you have to transform by the upper 3x3, but inversed, and then transposed. |
||||||
|
|
|
Transforming a vector is different than transforming a point -- you can't apply the transformation, only the rotations. |
||
|
|
|
|
You need to apply the inverse-transpose of your matrix to the normals, instead of using the original matrix. Also, you need to treat w-coordinate of the normal as 0 (not 1 as with points) when transforming it. |
|||
|
|
|
|
You can apply pretty much the same transformation for both but keep these two things in mind:
|
|||
|
|
|
|
renormalization will not fix it: suppose the normal is (1,0,0) then translate it with (-2,0,0) => the normal will be (-1,0,0) which is normalized and is wrong, because the normal should stay the same. |
|||
|
|
