当物体不在轴上时如何找到反射矢量?
How to find reflection vector when the object doesn't sit on an axis?
如何计算这个问题的反射向量?使用公式 r = v - 2 (v.n)n 当对象位于 x 或 y 轴上时我可以获得反射但是当使用此公式时它似乎不会给出奇怪的结果。任何帮助将不胜感激。
Example of the problem
法向量n
需要归一化。
在你的例子中,n
应该是 (1/sqrt(2), 1/sqrt(2))
。
如何计算这个问题的反射向量?使用公式 r = v - 2 (v.n)n 当对象位于 x 或 y 轴上时我可以获得反射但是当使用此公式时它似乎不会给出奇怪的结果。任何帮助将不胜感激。
Example of the problem
法向量n
需要归一化。
在你的例子中,n
应该是 (1/sqrt(2), 1/sqrt(2))
。