Skip to content

Instantly share code, notes, and snippets.

@marco-we
Created May 6, 2015 14:42
Show Gist options
  • Save marco-we/e4bd5d9e2d3163f012a6 to your computer and use it in GitHub Desktop.
Save marco-we/e4bd5d9e2d3163f012a6 to your computer and use it in GitHub Desktop.
quaternion_how_tos
* How to rotate one quaternion on to another:
// http://answers.unity3d.com/questions/35541/problem-finding-relative-rotation-from-one-quatern.html
Quaternion relative = Quaternion.Inverse(a) * b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment