pub struct ObjVertex {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
A text OBJ vertex decoded from a borrowed v record.
Fields§
§x: f32X coordinate.
y: f32Y coordinate.
z: f32Z coordinate.
Trait Implementations§
impl Copy for ObjVertex
impl StructuralPartialEq for ObjVertex
Auto Trait Implementations§
impl Freeze for ObjVertex
impl RefUnwindSafe for ObjVertex
impl Send for ObjVertex
impl Sync for ObjVertex
impl Unpin for ObjVertex
impl UnsafeUnpin for ObjVertex
impl UnwindSafe for ObjVertex
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