Merge pull request #289 from 2shady4u/master

Fixed wrong implementation of Quat multiplication
pull/316/head
Thomas Herzog 2019-06-04 08:01:12 +02:00 committed by GitHub
commit 5bdcecfc20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -247,10 +247,10 @@ void Quat::operator-=(const Quat &q) {
} }
void Quat::operator*=(const Quat &q) { void Quat::operator*=(const Quat &q) {
x *= q.x; set(w * q.x + x * q.w + y * q.z - z * q.y,
y *= q.y; w * q.y + y * q.w + z * q.x - x * q.z,
z *= q.z; w * q.z + z * q.w + x * q.y - y * q.x,
w *= q.w; w * q.w - x * q.x - y * q.y - z * q.z);
} }
void Quat::operator*=(const real_t &s) { void Quat::operator*=(const real_t &s) {