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
Add a way to combine rotations to avoid this: r := Rotation(quat.Mul(quat.Number(q), quat.Number(r)))
// Then combines rotations r and q such that // q follows r.func (rRotation) Then(qRotation) Rotation {
returnRotation(quat.Mul(quat.Number(q), quat.Number(r)))
}