Filter löschen
Filter löschen

Vector against a mirror

6 Ansichten (letzte 30 Tage)
John Plant
John Plant am 15 Mai 2012
Hi. I'm doing a simulation of a light ray that hits a convergent mirror and comes back in a different direction. However I'm having trouble finding the direction... I have the normal direction of the mirror and the inciding ray. (used the quiver function)
Anyone has any idea how I can find the reflected ray?

Akzeptierte Antwort

Geoff
Geoff am 15 Mai 2012
From memory... I could be wrong here.
Make sure your incoming ray R and surface normal N (which points out) are both unit vectors.
Project the surface normal onto the incoming ray with dot product. This tells you how much vertical component there is in your ray. By definition this will be negative because your two vectors oppose. You can test this: positive = no reflection.
Now think... You need to add that vertical component to your ray TWICE (once cancels out the ray's vertical travel, and twice reverses the direction). Don't forget the product will be negative so you must subtract it!!
t = dot(N,R);
if t >= 0
S = R;
else
S = R - 2 * N * t;
end

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by