Merge pull request #289 from 2shady4u/master
Fixed wrong implementation of Quat multiplicationpull/316/head
commit
5bdcecfc20
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue