When to normalize vectors in a shader?
#1 Members - Reputation: 159
Posted 02 August 2012 - 06:43 AM
For example, the shader I am writing at them moment requires the vector from the view position to the vertex position in world space. Some shaders I see normalize this when it is in the fragment shader, but does that not destroy the value of the vector for further calculations?
#2 Members - Reputation: 402
Posted 02 August 2012 - 06:49 AM
http://www.lighthouse3d.com/tutorials/glsl-tutorial/normalization-issues/
its mainly an issue caused by the interpolation of vectors, but explained in more detail in the above
#3 Moderators - Reputation: 13517
Posted 02 August 2012 - 07:00 AM
You normalize vectors when they represent directions, but aren't already normalized (such as when several normals have been interpolated).
Normalizing a vector that represents something else (like a position) doesn't make sense (unless you're trying to calculate the direction from the origin to that position).
#4 Members - Reputation: 3809
Posted 02 August 2012 - 07:06 AM
Edited by mhagain, 02 August 2012 - 07:07 AM.
It appears that the gentleman thought C++ was extremely difficult and he was overjoyed that the machine was absorbing it; he understood that good C++ is difficult but the best C++ is well-nigh unintelligible.
#5 Members - Reputation: 712
Posted 02 August 2012 - 09:50 AM
It doesn't really have anything to do with square root being plotted as a curve. It has to do with the fact that you can use the Pythagorean theorem, which involves a square root, to determine the length of the vector. And by dividing the vector through its length, you get a vector with the length 1 -> a unit vector.The basic problem is that normalization involves a square root, and a square root does not plot as a straight line - it's a curve. Linear interpolation is not going to preserve that.
Edited by CryZe, 02 August 2012 - 09:51 AM.
#6 Members - Reputation: 763
Posted 02 August 2012 - 10:09 AM
Edited by japro, 02 August 2012 - 10:10 AM.
#7 Members - Reputation: 159
Posted 02 August 2012 - 10:28 AM
There isn't really a general rule when to normalize or not... You use normalized vectors when you need a normalized vector. So face normals or light directions often have to be normalized for the dot products/reflections you do during lighting calculation to make sense. On the other hand when you want to raycast something, normalization of the ray direction is often not required. There isn't really a way around understanding the math behind the operations you do.
Yes I thought so, I just figured maybe there was some rules like "you shouldn't normalize in view space". Thanks for the tips. I shall try and keep any normalizing to a minimum though for now and see how it goes






