JPADynamicsBlock OK

This commit is contained in:
robojumper
2025-04-27 14:29:38 +02:00
parent 225ce0d4ce
commit ca2f6bde48
11 changed files with 136 additions and 74 deletions
+4
View File
@@ -36,6 +36,10 @@ struct Vector3f : public nw4r::math::VEC3 {
return *this;
}
void mul(const Vector3f &v, const Vector3f &w) {
set(v.x * w.x, v.y * w.y, v.z * w.z);
}
Vector3f &operator*=(const Vector3f &v) {
set(x * v.x, y * v.y, z * v.z);
return *this;