diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-01-17 22:01:21 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-01-17 22:01:21 +0800 |
commit | e136cf1b368268ddd44b85b1c5a3dabffb8fb1c8 (patch) | |
tree | 054aa8f0102fbfa6c69d25fdc045f8dda5075305 /meta/3rd | |
parent | b98f3129a1781eedf355ac9101757fad0da8a775 (diff) | |
download | lua-language-server-e136cf1b368268ddd44b85b1c5a3dabffb8fb1c8.zip |
update love2d-api
Diffstat (limited to 'meta/3rd')
-rw-r--r-- | meta/3rd/love2d/library/love/math.lua | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/meta/3rd/love2d/library/love/math.lua b/meta/3rd/love2d/library/love/math.lua index b0e5516e..2021b492 100644 --- a/meta/3rd/love2d/library/love/math.lua +++ b/meta/3rd/love2d/library/love/math.lua @@ -610,10 +610,22 @@ function Transform:scale(sx, sy) end ---@overload fun(self: love.Transform, layout: love.MatrixLayout, matrix: table):love.Transform ---@param e1_1 number # The first column of the first row of the matrix. ---@param e1_2 number # The second column of the first row of the matrix. ----@vararg number # Additional matrix elements. +---@param e1_3 number # The third column of the first row of the matrix. +---@param e1_4 number # The fourth column of the first row of the matrix. +---@param e2_1 number # The first column of the second row of the matrix. +---@param e2_2 number # The second column of the second row of the matrix. +---@param e2_3 number # The third column of the second row of the matrix. +---@param e2_4 number # The fourth column of the second row of the matrix. +---@param e3_1 number # The first column of the third row of the matrix. +---@param e3_2 number # The second column of the third row of the matrix. +---@param e3_3 number # The third column of the third row of the matrix. +---@param e3_4 number # The fourth column of the third row of the matrix. +---@param e4_1 number # The first column of the fourth row of the matrix. +---@param e4_2 number # The second column of the fourth row of the matrix. +---@param e4_3 number # The third column of the fourth row of the matrix. ---@param e4_4 number # The fourth column of the fourth row of the matrix. ---@return love.Transform transform # The Transform object the method was called on. Allows easily chaining Transform methods. -function Transform:setMatrix(e1_1, e1_2, ..., e4_4) end +function Transform:setMatrix(e1_1, e1_2, e1_3, e1_4, e2_1, e2_2, e2_3, e2_4, e3_1, e3_2, e3_3, e3_4, e4_1, e4_2, e4_3, e4_4) end --- ---Resets the Transform to the specified transformation parameters. |