フィルターのクリア

Vector against a mirror

6 ビュー (過去 30 日間)
John Plant
John Plant 2012 年 5 月 15 日
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?

採用された回答

Geoff
Geoff 2012 年 5 月 15 日
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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeometric Geodesy についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by