pub struct Vec3 {
pub x: f64,
pub y: f64,
pub z: f64,
}
Fields§
§x: f64
§y: f64
§z: f64
Implementations§
Trait Implementations§
Source§impl From<ManifoldVec3> for Vec3
impl From<ManifoldVec3> for Vec3
Source§fn from(value: ManifoldVec3) -> Self
fn from(value: ManifoldVec3) -> Self
Converts to this type from the input type.
impl Copy for Vec3
impl StructuralPartialEq for Vec3
Auto Trait Implementations§
impl Freeze for Vec3
impl RefUnwindSafe for Vec3
impl Send for Vec3
impl Sync for Vec3
impl Unpin for Vec3
impl UnwindSafe for Vec3
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