#[repr(C)]pub struct b3Mesh {
pub data: *const b3MeshData,
pub scale: b3Vec3,
}Expand description
This allows mesh data to be re-used with different scales.
Fields§
§data: *const b3MeshDataImmutable pointer to the mesh data.
scale: b3Vec3This scale may be non-uniform and have negative components. However, no component may be very small in magnitude.
Trait Implementations§
Auto Trait Implementations§
impl !Send for b3Mesh
impl !Sync for b3Mesh
impl Freeze for b3Mesh
impl RefUnwindSafe for b3Mesh
impl Unpin for b3Mesh
impl UnsafeUnpin for b3Mesh
impl UnwindSafe for b3Mesh
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