Base: Set angle in Rotation::inverse function

This commit is contained in:
marioalexis
2022-06-17 16:22:34 -03:00
committed by Uwe
parent 9b640f10cf
commit af94c6c9b7

View File

@@ -341,6 +341,7 @@ Rotation Rotation::inverse() const
rot._axis[0] = -this->_axis[0];
rot._axis[1] = -this->_axis[1];
rot._axis[2] = -this->_axis[2];
rot._angle = this->_angle;
return rot;
}