init.lua 245 B

12345678910111213
  1. return {
  2. summary = 'A 4x4 matrix.',
  3. description = 'A `mat4` is a math type that holds 16 values in a 4x4 grid.',
  4. constructors = {
  5. 'lovr.math.newMat4',
  6. 'lovr.math.mat4'
  7. },
  8. related = {
  9. 'Vec3',
  10. 'Quat',
  11. 'Vectors'
  12. }
  13. }