Update leenkx/Sources/iron/math/Quat.hx

This commit is contained in:
Onek8 2025-04-06 15:27:05 +00:00
parent ee8d3314b5
commit d1edb1464e

View File

@ -429,6 +429,12 @@ class Quat {
else else
this.mult(qz); this.mult(qz);
// TO DO quick fix doesnt make sense.
this.x = -this.x;
this.y = -this.y;
this.z = -this.z;
this.w = -this.w;
return this; return this;
} }