Skip to content

Instantly share code, notes, and snippets.

@omochi
Created November 19, 2016 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omochi/1fb084670328bb457c3fd49bce2c7b8d to your computer and use it in GitHub Desktop.
Save omochi/1fb084670328bb457c3fd49bce2c7b8d to your computer and use it in GitHub Desktop.
xyz
a = cx*cy*cz + sx*sy*sz
b = cy*cz*sx - cx*sy*sz
c = cx*cz*sy + cy*sx*sz
d = -cz*sx*sy + cx*cy*sz
xzy
a = cx*cy*cz - sx*sy*sz
b = cy*cz*sx + cx*sy*sz
c = cx*cz*sy + cy*sx*sz
d = -cz*sx*sy + cx*cy*sz
yzx
a = cx*cy*cz + sx*sy*sz
b = cy*cz*sx - cx*sy*sz
c = cx*cz*sy - cy*sx*sz
d = cz*sx*sy + cx*cy*sz
yxz
a = cx*cy*cz - sx*sy*sz
b = cy*cz*sx - cx*sy*sz
c = cx*cz*sy + cy*sx*sz
d = cz*sx*sy + cx*cy*sz
zxy
a = cx*cy*cz + sx*sy*sz
b = cy*cz*sx + cx*sy*sz
c = cx*cz*sy - cy*sx*sz
d = -cz*sx*sy + cx*cy*sz
zyx
a = cx*cy*cz - sx*sy*sz
b = cy*cz*sx + cx*sy*sz
c = cx*cz*sy - cy*sx*sz
d = cz*sx*sy + cx*cy*sz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment