pub struct Point3 {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
3D point (point3d in voxlaptest), 12 bytes packed.
Fields§
§x: f32§y: f32§z: f32Trait Implementations§
impl Copy for Point3
impl StructuralPartialEq for Point3
Auto Trait Implementations§
impl Freeze for Point3
impl RefUnwindSafe for Point3
impl Send for Point3
impl Sync for Point3
impl Unpin for Point3
impl UnsafeUnpin for Point3
impl UnwindSafe for Point3
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