2
0

length.lua 303 B

123456789101112131415
  1. return {
  2. summary = 'Get the length of the quaternion.',
  3. description = 'Returns the length of the quaternion.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'length',
  8. type = 'number',
  9. description = 'The length of the quaternion.'
  10. }
  11. },
  12. related = {
  13. 'Quat:normalize'
  14. }
  15. }