Trait de_types::projection::ToFlat

source ·
pub trait ToFlat<Flat> {
    // Required method
    fn to_flat(self) -> Flat;
}
Expand description

Transformation between 3D world coordinates and 2D map coordinates.

Required Methods§

source

fn to_flat(self) -> Flat

Implementations on Foreign Types§

source§

impl ToFlat<Aabb> for Aabb

source§

impl ToFlat<Mat3> for Mat4

source§

fn to_flat(self) -> Mat3

source§

impl ToFlat<Vec2> for Vec3

source§

fn to_flat(self) -> Vec2

source§

impl ToFlat<Vec2> for OPoint<f32, Const<3>>

source§

fn to_flat(self) -> Vec2

Implementors§