Difference between revisions of "vec4 (Français)"
(Created page with "Un vecteur comportant quatres composantes en nombre à virgule flottante. On peut y accéder avec <code>.r/g/b/a</code>, <code>.x/y/z/w</code>, ou <code>[0/1/2/3]</code>. <sou...") |
|||
Line 19: | Line 19: | ||
[[Category:GLSL (Français)]] | [[Category:GLSL (Français)]] | ||
{{#set:Description=Vector made of 4 floats.}} | {{#set:Description=Vector made of 4 floats.}} | ||
+ | {{#set:Since=000}} | ||
== Autres langues == | == Autres langues == | ||
{{i18n|vec4}} | {{i18n|vec4}} |
Revision as of 21:56, 8 January 2023
Un vecteur comportant quatres composantes en nombre à virgule flottante. On peut y accéder avec .r/g/b/a
, .x/y/z/w
, ou [0/1/2/3]
.
vec4 exemple = vec4(0.333, 0.666, 0.999, 1.0);
float r = exemple.r;
float g = exemple.g;
float b = exemple.b;
float a = exemple.a;
D'avantage de lecture :
- (en anglais) Vectors on the OpenGL Wiki
- (en anglais) vec4 on The Book of Shaders
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