pub trait GridPoint: Clone + Copy {
    fn x(&self) -> i32;
fn y(&self) -> i32; fn as_ivec2(&self) -> IVec2 { ... }
fn as_uvec2(&self) -> UVec2 { ... }
fn as_vec2(&self) -> Vec2 { ... }
fn to_array(&self) -> [i32; 2] { ... } }
Expand description

A trait for an integer point on a 2d grid.

Required methods

Provided methods

Implementations on Foreign Types

Implementors