invert.lua 343 B

1234567891011121314151617
  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. self = {
  7. type = 'Mat4',
  8. description = 'The inverted matrix.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'self' }
  15. }
  16. }
  17. }