pub struct Vector3D {
pub x: f64,
pub y: f64,
pub z: f64,
}Expand description
A three-dimensional vector of data.
Fields§
§x: f64The X-axis (1st dimension).
y: f64The Y-axis (2nd dimension).
z: f64The Z-axis (3rd dimension).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vector3D
impl RefUnwindSafe for Vector3D
impl Send for Vector3D
impl Sync for Vector3D
impl Unpin for Vector3D
impl UnwindSafe for Vector3D
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more