diff options
Diffstat (limited to 'meta/3rd/love2d/library/love.math.lua')
-rw-r--r-- | meta/3rd/love2d/library/love.math.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/3rd/love2d/library/love.math.lua b/meta/3rd/love2d/library/love.math.lua index 2f63a8e8..455a10c2 100644 --- a/meta/3rd/love2d/library/love.math.lua +++ b/meta/3rd/love2d/library/love.math.lua @@ -431,3 +431,7 @@ function Transform:transformPoint(globalX, globalY) end ---@param dy number # The relative translation along the y-axis. ---@return love.Transform transform # The Transform object the method was called on. Allows easily chaining Transform methods. function Transform:translate(dx, dy) end + +---@class love.MatrixLayout +---@field row integer # The matrix is row-major: +---@field column integer # The matrix is column-major: |