#[repr(C)]pub struct b3MeshNode {
pub lowerBound: b3Vec3,
pub data: b3MeshNode__bindgen_ty_1,
pub upperBound: b3Vec3,
pub triangleOffset: u32,
}Expand description
A mesh BVH node.
Fields§
§lowerBound: b3Vec3The lower bound of the node AABB. Strategic placement for SIMD.
data: b3MeshNode__bindgen_ty_1§upperBound: b3Vec3The upper bound of the node AABB. Strategic placement for SIMD.
triangleOffset: u32The index of the leaf triangles.
Trait Implementations§
Source§impl Clone for b3MeshNode
impl Clone for b3MeshNode
Source§fn clone(&self) -> b3MeshNode
fn clone(&self) -> b3MeshNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for b3MeshNode
Auto Trait Implementations§
impl Freeze for b3MeshNode
impl RefUnwindSafe for b3MeshNode
impl Send for b3MeshNode
impl Sync for b3MeshNode
impl Unpin for b3MeshNode
impl UnsafeUnpin for b3MeshNode
impl UnwindSafe for b3MeshNode
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