Difference between revisions of "vec2"

(Created page with "A vector with 2 floating-point number components. These can be accessed with <code>.r/g</code>, <code>.x/y</code>, or <code>[0/1]</code>. <source lang="glsl"> vec2 example = v...")
 
(Other Languages)
 
(One intermediate revision by one other user not shown)
Line 13: Line 13:
 
== See Also ==
 
== See Also ==
 
* [[vec4]]
 
* [[vec4]]
 +
* [[Shader]]
  
 
[[Category:GLSL]]
 
[[Category:GLSL]]
 +
{{#set:Description=Vector made of 2 floats.}}
 
== Other Languages ==
 
== Other Languages ==
{{i18n|vec4}}
+
{{i18n|vec2}}

Latest revision as of 21:56, 8 January 2023

A vector with 2 floating-point number components. These can be accessed with .r/g, .x/y, or [0/1].

vec2 example = vec2(0.5, 1.0);

float x = example.x;
float y = example.y;

Read more:

See Also

Other Languages