vec2

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