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 0a6d271121
commit f64916dc5e

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;
}