MatrixLayout (Français)

Available since LÖVE 11.0
This enum is not supported in earlier versions.

Agencement des éléments de la matrice (lignes-majeures ou colonnes-majeures).

Constantes

row
La matrice est ligne-majeure :
matrix = {
    {a, b, c, d}, -- row 1
    {e, f, g, h}, -- row 2
    -- etc.
}
-- or
matrix = {
    a, b, c, d, -- row 1
    e, f, g, h, -- row 2
    -- etc.
}
column
The matrice est colonne-majeure ::
matrix = {
    {a, b, c, d}, -- column 1
    {e, f, g, h}, -- column 2
    -- etc.
}
-- or
matrix = {
    a, b, c, d, -- column 1
    e, f, g, h, -- column 2
    -- etc.
}

Voir également


Autres langues