Vec4i

Type Alias Vec4i 

Source
pub type Vec4i = Vector4<i32>;
Expand description

4D integer vector.

Aliased Type§

#[repr(C)]
pub struct Vec4i { pub x: i32, pub y: i32, pub z: i32, pub w: i32, }

Fields§

§x: i32

X component.

§y: i32

Y component.

§z: i32

Z component.

§w: i32

W component.