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 :
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