init.lua 639 B

123456789101112131415161718192021222324
  1. return {
  2. tag = 'modules',
  3. summary = 'Contains useful math helpers.',
  4. description = 'The `lovr.math` module provides math helpers commonly used for 3D applications.',
  5. sections = {
  6. {
  7. name = 'Randomization',
  8. tag = 'random',
  9. description = 'Functions for generating random numbers and noise.'
  10. },
  11. {
  12. name = 'Vectors',
  13. tag = 'vectors',
  14. description = [[
  15. A collection of vector objects. Check out the `Vectors` guide for an introduction.
  16. ]]
  17. },
  18. {
  19. name = 'Other',
  20. tag = 'mathOther',
  21. description = 'Other miscellaneous math objects/helpers.',
  22. }
  23. }
  24. }