transpose.lua 261 B

123456789101112
  1. return {
  2. summary = 'Transpose the matrix.',
  3. description = 'Transposes the matrix, mirroring its values along the diagonal.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'm',
  8. type = 'Mat4',
  9. description = 'The original matrix.'
  10. }
  11. }
  12. }