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.
我有一个 vector3D 对象,想用值 -1.0 对其进行缩放。在java中我会做
private vector3f vector = new Vector3f(someX,someY,someZ); vector.scale(-1.0f);
任何人都知道如何在 vb.net 中做到这一点?
谢谢
私有 Vector3f 向量 = 新 Vector3f(-50.0f, -80.0f, -120.0f);