himo2 closer to matching

This commit is contained in:
LagoLunatic
2025-09-09 15:23:57 -04:00
parent bac5c4a4f8
commit 3fa09b0dde
7 changed files with 968 additions and 856 deletions
+4 -1
View File
@@ -64,7 +64,10 @@ struct cXyz : Vec {
z -= f;
}
void operator-=(const Vec& other) { VECSubtract(this, &other, this); }
void operator+=(const Vec& other) { VECAdd(this, &other, this); }
cXyz* operator+=(const Vec& other) {
VECAdd(this, &other, this);
return this;
}
void operator*=(f32 scale) { VECScale(this, this, scale); }
cXyz getCrossProduct(const Vec&) const;
cXyz outprod(const Vec&) const;