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.
谁能解释一下vector3f和vector4f之间的区别
我知道vector3f包含xyz但是vector4f包含xyzw
但是如果我想将 3f 转换为 4f 我为 w 设置的值是什么?
如果您不使用第四个值,请将其设置为零。
vector4f 有一个构造函数,它接受一个 Tuple3f,该构造函数所做的就是将 W 值设置为 0。
Vector3f vector3 = new Vector3f(x,y,z); Vector4f vector4 = new Vector4f((Tuple3f)vector3);