vote up 2 vote down star
3

I'm working on a raytracer for a large side project, with the goal being to produce realistic renders without worrying about CPU time. Basically pre-rendering, so I'm going for accuracy over speed.

I'm having some trouble wrapping my head around some of the more advanced math going on in the lighting aspects of things. Basically, I have a point for my light. Assuming no distance falloff, I should be able to use the point on the polygon I've found, and compare the normal at that point to the angle of incidence on the light to figure out my illumination value. So given a point on a plane, the normal for that plane, and the point light, how would I go about figuring out that angle?

The reason I ask is that I can't seem to find any reference on finding the angle of incidence. I can find lots of references detailing what to do once you've got it, but nothing telling me how to get it in the first place. I imagine it's something simple, but I just can't logic it out.

Thanks

flag

69% accept rate

3 Answers

vote up 6 vote down check

The dot product of the surface normal vector and the incident light vector will give you the cosine of the angle of incidence, if you've normalised your vectors.

link|flag
Just had a look back at my old raytracer code from university, and indeed the only time it mentions angle of incidence is related to the cosine of it, which is calculated exactly this way. – Chad Birch Feb 20 at 18:40
vote up 0 vote down

NOTE: From where I'm sitting right now, I can't upload a picture for you. I'll try to lay it out for you in words, though.

Here's how you can imagine this process:

Define alt text as your normalized normal (the vertical vector that comes out of your planar polygon and is of unit length, making the math easier).

Define alt text as your eyeball point.

Define alt text as the impact point of your "eyeball ray" on the polygon.

Define alt text as the normalized vector pointing from alt text back to alt text. You can write this like so:

alt text

So, you have created a vector that points from alt text to alt text and then divided that vector by its own length, giving you a vector of length 1 that points from alt text to alt text

The reason that we went to all this trouble is that we would really like the angle alt text which is the angle between the normal alt text and that vector alt text that you just created. Another word for theta is the angle of incidence.

An easy way to calculate this angle of incidence is to use the dot product. Using the terms defined above, you take the x, y and z components of each of those unit length vectors, multiply them together and add the sums to get the dot product.

alt text

To calculate alt text, therefore, you simple use the inverse cosine on the dot product:

alt text

Edit: modified the above to add yourequations.com formatting.

link|flag
vote up 1 vote down

It sounds to me like you are trying to calculate diffuse illumination. Assuming you have Surface Point the point on the surface, Light Position, and the Normal Vector normal vector. You can calculate diffuse illumination like this:

Diffuse Illumination

You technically don't need to calculate the actual angle of incident because you only need the cosine of that which the dot product conveniently gives you.

link|flag
Nice typesetting for the equations, Kevin. What did you use to do it? – duffymo Feb 20 at 19:17
Looks like he used yourequations.com, neat site. – Chad Birch Feb 20 at 19:19
1  
yourequations.com I've been waiting for a question I could use it on. – Kevin Loney Feb 20 at 19:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.