pub type Vector3 = Vector3<f64>;Expand description
redefinition, scalar = f64
Aliased Type§
#[repr(C)]pub struct Vector3 {
pub x: f64,
pub y: f64,
pub z: f64,
}Fields§
§x: f64The x component of the vector.
y: f64The y component of the vector.
z: f64The z component of the vector.