Type Alias msdfgen_Point2

Source
pub type msdfgen_Point2 = msdfgen_Vector2;
Expand description

A 2-dimensional euclidean vector with double precision. Implementation based on the Vector2 template from Artery Engine. @author Viktor Chlumsky

Aliased Type§

struct msdfgen_Point2 {
    pub x: f64,
    pub y: f64,
}

Fields§

§x: f64§y: f64