Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个相机设置:
Pos(px,py,pz) LookAt(lx,ly,lz) Up(ux,uy,uz)
我需要找到正确和向上的摄像机向量,非常感谢一种通过解释找到它们的方法。谢谢。
看来您已经有一个相机 pos (p)、target (l) 和 up (u) 向量。要计算正确,求(p - l) 和 (u - p)的叉积。
这将为您提供一个与两者正交的向量,即“正确”向量。