DolphinCGraphics & CDecal 99%

This commit is contained in:
2024-09-18 23:13:27 -06:00
parent 02ca9b7893
commit 5195d31e22
12 changed files with 135 additions and 54 deletions

View File

@@ -90,7 +90,10 @@ public:
}
void AddTranslationZ(float z) { posZ += z; }
CTransform4f& operator*=(const CTransform4f& other);
CTransform4f& operator*=(const CTransform4f& other) {
*this = *this * other;
return *this;
}
CTransform4f operator*(const CTransform4f& vec) const;
CVector3f operator*(const CVector3f& vec) const;