init.lua 230 B

123456789101112
  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. }
  12. }