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"> | ||
− | + | matrice = { | |
− | {a, b, c, d}, -- | + | {a, b, c, d}, -- ligne 1 |
− | {e, f, g, h}, -- | + | {e, f, g, h}, -- ligne 2 |
-- etc. | -- etc. | ||
} | } | ||
− | -- | + | -- ou |
− | + | matrice = { | |
− | a, b, c, d, -- | + | a, b, c, d, -- ligne 1 |
− | e, f, g, h, -- | + | 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"> | ||
− | + | matrice = { | |
− | {a, b, c, d}, -- | + | {a, b, c, d}, -- colonne 1 |
− | {e, f, g, h}, -- | + | {e, f, g, h}, -- colonne 2 |
-- etc. | -- etc. | ||
} | } | ||
− | -- | + | -- ou |
− | + | matrice = { | |
− | a, b, c, d, -- | + | a, b, c, d, -- colonne 1 |
− | e, f, g, h, -- | + | 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
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info