Vector3

Type Alias Vector3 

Source
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: f64

The x component of the vector.

§y: f64

The y component of the vector.

§z: f64

The z component of the vector.