Difference between revisions of "MatrixLayout (Français)"

(Created page with "{{newin|11.0|110|type=enum}} Agencement des éléments de la matrice (lignes-majeures ou colonnes-majeures). == Constantes == ;row: La matrice est ligne-majeure : <sourc...")
 
 
Line 5: Line 5:
 
;row: La matrice est ligne-majeure :
 
;row: La matrice est ligne-majeure :
 
<source lang="lua">
 
<source lang="lua">
matrix = {
+
matrice = {
     {a, b, c, d}, -- row 1
+
     {a, b, c, d}, -- ligne 1
     {e, f, g, h}, -- row 2
+
     {e, f, g, h}, -- ligne 2
 
     -- etc.
 
     -- etc.
 
}
 
}
-- or
+
-- ou
matrix = {
+
matrice = {
     a, b, c, d, -- row 1
+
     a, b, c, d, -- ligne 1
     e, f, g, h, -- row 2
+
     e, f, g, h, -- ligne 2
 
     -- etc.
 
     -- etc.
 
}
 
}
Line 19: Line 19:
 
;column: The matrice est colonne-majeure ::
 
;column: The matrice est colonne-majeure ::
 
<source lang="lua">
 
<source lang="lua">
matrix = {
+
matrice = {
     {a, b, c, d}, -- column 1
+
     {a, b, c, d}, -- colonne 1
     {e, f, g, h}, -- column 2
+
     {e, f, g, h}, -- colonne 2
 
     -- etc.
 
     -- etc.
 
}
 
}
-- or
+
-- ou
matrix = {
+
matrice = {
     a, b, c, d, -- column 1
+
     a, b, c, d, -- colonne 1
     e, f, g, h, -- column 2
+
     e, f, g, h, -- colonne 2
 
     -- etc.
 
     -- etc.
 
}
 
}

Latest revision as of 02:13, 1 March 2022

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 :
matrice = {
    {a, b, c, d}, -- ligne 1
    {e, f, g, h}, -- ligne 2
    -- etc.
}
-- ou
matrice = {
    a, b, c, d, -- ligne 1
    e, f, g, h, -- ligne 2
    -- etc.
}
column
The matrice est colonne-majeure ::
matrice = {
    {a, b, c, d}, -- colonne 1
    {e, f, g, h}, -- colonne 2
    -- etc.
}
-- ou
matrice = {
    a, b, c, d, -- colonne 1
    e, f, g, h, -- colonne 2
    -- etc.
}

Voir également


Autres langues