pub struct FbxVertex {
pub position: [f32; 3],
pub normal: [f32; 3],
pub uv: [f32; 2],
pub tangent: [f32; 4],
pub color: [f32; 4],
}Expand description
Extracted vertex position from FBX geometry.
Fields§
§position: [f32; 3]§normal: [f32; 3]§uv: [f32; 2]§tangent: [f32; 4]§color: [f32; 4]Trait Implementations§
Auto Trait Implementations§
impl Freeze for FbxVertex
impl RefUnwindSafe for FbxVertex
impl Send for FbxVertex
impl Sync for FbxVertex
impl Unpin for FbxVertex
impl UnsafeUnpin for FbxVertex
impl UnwindSafe for FbxVertex
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