#[repr(C)]pub struct b3HullFace {
pub edge: u8,
}Expand description
A hull face. Hulls use a half-edge data structure, so a face can be determined from a single half-edge index.
Fields§
§edge: u8An arbitrary half-edge on this face
Trait Implementations§
Source§impl Clone for b3HullFace
impl Clone for b3HullFace
Source§fn clone(&self) -> b3HullFace
fn clone(&self) -> b3HullFace
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 b3HullFace
Auto Trait Implementations§
impl Freeze for b3HullFace
impl RefUnwindSafe for b3HullFace
impl Send for b3HullFace
impl Sync for b3HullFace
impl Unpin for b3HullFace
impl UnsafeUnpin for b3HullFace
impl UnwindSafe for b3HullFace
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