pub struct Simplex {
pub v1: SimplexVertex,
pub v2: SimplexVertex,
pub v3: SimplexVertex,
pub count: i32,
}Expand description
Simplex from the GJK algorithm. (b2Simplex)
Fields§
§v1: SimplexVertexvertices
v2: SimplexVertex§v3: SimplexVertex§count: i32number of valid vertices
Trait Implementations§
impl Copy for Simplex
impl StructuralPartialEq for Simplex
Auto Trait Implementations§
impl Freeze for Simplex
impl RefUnwindSafe for Simplex
impl Send for Simplex
impl Sync for Simplex
impl Unpin for Simplex
impl UnsafeUnpin for Simplex
impl UnwindSafe for Simplex
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