pub type Vector2D<T> = TypedVector2D<T, UnknownUnit>;Expand description
Default 2d vector type with no unit.
Vector2D provides the same methods as TypedVector2D.
Aliased Type§
#[repr(C)]pub struct Vector2D<T> {
pub x: T,
pub y: T,
/* private fields */
}Fields§
§x: T§y: T