pub type ResVector = Vector2D<f32, Resolved>;
Expand description
A 2D vector in resolved physical pixels that hasn’t yet been combined with it’s paired relative coordinates.
Aliased Type§
#[repr(C)]pub struct ResVector {
pub x: f32,
pub y: f32,
}
Fields§
§x: f32
The x
(traditionally, horizontal) coordinate.
y: f32
The y
(traditionally, vertical) coordinate.