Type Alias Vec2i

Source
pub type Vec2i = Vec2<i32>;
Expand description

A 2-dimensional signed integer vector type

Aliased Type§

pub struct Vec2i {
    pub x: i32,
    pub y: i32,
}

Fields§

§x: i32§y: i32