Difference between revisions of "MatrixLayout (日本語)"

(Created page with "{{newin (日本語)|11.0|110|type=列挙型}} 行列要素の配置 (列優先または行優先)。 == 定数 == ;row: 行列は列優先です (row-maj...")
 
m (関連)
 
Line 37: Line 37:
 
* [[Transform:setMatrix (日本語)]]
 
* [[Transform:setMatrix (日本語)]]
 
* [[Shader:send (日本語)]]
 
* [[Shader:send (日本語)]]
 +
* [https://qiita.com/niusounds/items/65099654673f5df3be9b Row-major orderとColumn-major order - Qiita (@niusoundsさまの解説)]
 
[[Category:Enums]]
 
[[Category:Enums]]
 
{{#set:Since=110}}
 
{{#set:Since=110}}
 
{{#set:PrettySince=11.0}}
 
{{#set:PrettySince=11.0}}
 
{{#set:Description=行列要素の配置 (列優先または行優先)。}}
 
{{#set:Description=行列要素の配置 (列優先または行優先)。}}
 +
 
== そのほかの言語 ==
 
== そのほかの言語 ==
 
{{i18n (日本語)|MatrixLayout}}
 
{{i18n (日本語)|MatrixLayout}}

Latest revision as of 10:30, 2 December 2019

LÖVE 11.0 から使用可能
この列挙型は以前のバージョンでは非対応です。

行列要素の配置 (列優先または行優先)。

定数

row
行列は列優先です (row-major) :
matrix = {
    {a, b, c, d}, -- 列 1
    {e, f, g, h}, -- 列 2
    -- など。
}
-- または
matrix = {
    a, b, c, d, -- 列 1
    e, f, g, h, -- 列 2
    -- など。
}
column
行列は行優先です (column-major):
matrix = {
    {a, b, c, d}, -- 行 1
    {e, f, g, h}, -- 行 2
    -- など。
}
-- または
matrix = {
    a, b, c, d, -- 行 1
    e, f, g, h, -- 行 2
    -- など。
}

関連



そのほかの言語