#[repr(C)]pub struct HullFace {
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§
impl Copy for HullFace
impl Eq for HullFace
impl StructuralPartialEq for HullFace
Auto Trait Implementations§
impl Freeze for HullFace
impl RefUnwindSafe for HullFace
impl Send for HullFace
impl Sync for HullFace
impl Unpin for HullFace
impl UnsafeUnpin for HullFace
impl UnwindSafe for HullFace
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