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.
如果我有一个矩阵,它是 World View Projection 的组合,并且我将它乘以投影的倒数,它会产生 World View 矩阵还是其他东西?如果不是,那么如何从世界视图投影矩阵中提取世界视图矩阵?
谢谢你的帮助 :)
如果你在右边乘以 Projection 的倒数,你将得到 World*View。
如果你在左边乘法,你会得到完全不同的东西,因为矩阵乘法不是可交换的。
这假设 Projection 有一个逆。并非所有矩阵都可以。