invert.lua 273 B

123456789101112
  1. return {
  2. summary = 'Invert the matrix.',
  3. description = 'Inverts the matrix, causing it to represent the opposite of its old transform.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'm',
  8. type = 'Mat4',
  9. description = 'The original matrix.'
  10. }
  11. }
  12. }