pub struct PlyVertex {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
A PLY vertex decoded from borrowed little-endian float bytes.
Fields§
§x: f32X coordinate.
y: f32Y coordinate.
z: f32Z coordinate.
Trait Implementations§
impl Copy for PlyVertex
impl StructuralPartialEq for PlyVertex
Auto Trait Implementations§
impl Freeze for PlyVertex
impl RefUnwindSafe for PlyVertex
impl Send for PlyVertex
impl Sync for PlyVertex
impl Unpin for PlyVertex
impl UnsafeUnpin for PlyVertex
impl UnwindSafe for PlyVertex
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