pub struct MeshContact {
pub triangle_cache: Vec<TriangleCache>,
pub query_bounds: Aabb,
}Expand description
Mesh contact state. (b3MeshContact)
Fields§
§triangle_cache: Vec<TriangleCache>§query_bounds: AabbTrait Implementations§
Source§impl Clone for MeshContact
impl Clone for MeshContact
Source§fn clone(&self) -> MeshContact
fn clone(&self) -> MeshContact
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 moreSource§impl Debug for MeshContact
impl Debug for MeshContact
Source§impl Default for MeshContact
impl Default for MeshContact
Source§fn default() -> MeshContact
fn default() -> MeshContact
Returns the “default value” for a type. Read more
Source§impl PartialEq for MeshContact
impl PartialEq for MeshContact
impl StructuralPartialEq for MeshContact
Auto Trait Implementations§
impl Freeze for MeshContact
impl RefUnwindSafe for MeshContact
impl Send for MeshContact
impl Sync for MeshContact
impl Unpin for MeshContact
impl UnsafeUnpin for MeshContact
impl UnwindSafe for MeshContact
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