teaching machines

Computer Graphics Proofs

November 20, 2012 by . Filed under graphics, public.

Inverse of rotation/translation matrix

Occasionally I need to be back out of eye space and get back to object space, so I need the inverse of my modelview matrix. Finding an arbitrary inverse is non-trivial, but finding the inverse of a matrix that simply rotates and translates is simpler.

  1. Inverting a matrix product
  2. Inverting a translation
  3. Inverting a rotation
  4. Inverting a rotation + translation

Others