pub trait Point2d {
    fn x(&self) -> f32;
    fn y(&self) -> f32;

    fn as_ivec2(&self) -> IVec2 { ... }
    fn as_uvec2(&self) -> UVec2 { ... }
    fn as_vec2(&self) -> Vec2 { ... }
    fn to_array(&self) -> [f32; 2] { ... }
}
Expand description

A trait for an arbitrary 2d point.

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors