Difference between revisions of "vec2 (Français)"
(Created page with "Un vecteur comportant deux composantes en nombre en virgule flottante . On peut y accéder à l'aide de <code>.r/g</code>, <code>.x/y</code>, ou bien <code>[0/1]</code>. <sour...") |
|||
Line 7: | Line 7: | ||
</source> | </source> | ||
− | + | D'avantage de lecture : | |
− | * [https://www.khronos.org/opengl/wiki/Data_Type_(GLSL)#Vectors Vectors on the OpenGL Wiki] | + | * (en anglais) [https://www.khronos.org/opengl/wiki/Data_Type_(GLSL)#Vectors Vectors on the OpenGL Wiki] |
− | * [https://thebookofshaders.com/glossary/?search=vec2 vec2 on The Book of Shaders] | + | * (en anglais) [https://thebookofshaders.com/glossary/?search=vec2 vec2 on The Book of Shaders] |
== Voir également == | == Voir également == | ||
Line 17: | Line 17: | ||
[[Category:GLSL (Français)]] | [[Category:GLSL (Français)]] | ||
{{#set:Description=Vecteur composé de deux nombre à virgule flottante.}} | {{#set:Description=Vecteur composé de deux nombre à virgule flottante.}} | ||
+ | {{#set:Since=000}} | ||
− | == | + | == Autres langues == |
{{i18n|vec2}} | {{i18n|vec2}} |
Latest revision as of 22:00, 8 January 2023
Un vecteur comportant deux composantes en nombre en virgule flottante . On peut y accéder à l'aide de .r/g
, .x/y
, ou bien [0/1]
.
vec2 exemple = vec2(0.5, 1.0);
float x = exemple.x;
float y = exemple.y;
D'avantage de lecture :
- (en anglais) Vectors on the OpenGL Wiki
- (en anglais) vec2 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