Merge pull request #36 from h4570/hotfix/vector3

Fixed sqrt() VU0 calcs on real PS2
This commit is contained in:
Michał Mostowik
2020-12-07 00:41:34 +01:00
committed by GitHub
2 changed files with 28 additions and 19 deletions
+2 -1
View File
@@ -39,7 +39,8 @@ public:
Vector3 operator+(Vector3 v);
Vector3 operator-(const Vector3 &v);
Vector3 operator*(Vector3 &v);
Vector3 operator*(float t);
Vector3 operator*(const float &t);
void operator*=(const float &t);
Vector3 operator/(float t);
Vector3 operator-(void);