You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I double checked Cesium's implementation in Matrix3.fromHeadingPitchRoll(), there is a bug here:
Cesium/Core/Matrix3.js, line 321, formula here is incorrect,
The correct formula is:
var m12 = -sinPhi * cosPsi + cosPhi * sinTheta * sinPsi;
Instead of
var m12 = -sinTheta * cosPhi + cosPhi * sinTheta * sinPsi;
The text was updated successfully, but these errors were encountered:
Reported by @zimengyang in this comment
The text was updated successfully, but these errors were encountered: