rotateInertia method
void
rotateInertia(
- Matrix3 rot,
- Matrix3 inertia,
- Matrix3 out
Implementation
void rotateInertia(Matrix3 rot,Matrix3 inertia, Matrix3 out) {
tmpInertia.multiplyMatrices(rot, inertia);
out.multiplyMatrices(tmpInertia, rot, true);
}