mirror of
https://github.com/zeldaret/ss
synced 2026-06-03 10:31:28 -04:00
fix EGG::Matrix34f Copy assignment
This commit is contained in:
@@ -24,6 +24,11 @@ struct Matrix34f {
|
||||
return arr[i];
|
||||
}
|
||||
|
||||
Matrix34f &operator=(const Matrix34f &other) {
|
||||
copyFrom(other);
|
||||
return *this;
|
||||
}
|
||||
|
||||
void rotateBaseX(Vector3f &, Matrix34f &);
|
||||
void rotateVectorChange(Vector3f &, Vector3f &, Matrix34f &);
|
||||
void inverseTo(Matrix34f &to) const;
|
||||
|
||||
Reference in New Issue
Block a user