#[repr(C)]pub struct trimeshvi {
pub vtxCount: u32,
pub vtx: *mut f64,
pub indices: *mut u32,
pub indexCount: u32,
}
Expand description
TriMeshVI
Fields§
§vtxCount: u32
number of vertices
vtx: *mut f64
vertices
indices: *mut u32
indices
indexCount: u32
number of indices (all dTriIndex elements)
Trait Implementations§
impl Copy for trimeshvi
Auto Trait Implementations§
impl Freeze for trimeshvi
impl RefUnwindSafe for trimeshvi
impl !Send for trimeshvi
impl !Sync for trimeshvi
impl Unpin for trimeshvi
impl UnwindSafe for trimeshvi
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