#[repr(C)]pub struct b3HullVertex {
pub edge: u8,
}Expand description
A hull vertex. Identified by a half-edge with this vertex as its tail.
Fields§
§edge: u8A half-edge that has this vertex as the origin Can be used along with edge twins and winding order to traverse all the edges connected to this vertex.
Trait Implementations§
Source§impl Clone for b3HullVertex
impl Clone for b3HullVertex
Source§fn clone(&self) -> b3HullVertex
fn clone(&self) -> b3HullVertex
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 b3HullVertex
Auto Trait Implementations§
impl Freeze for b3HullVertex
impl RefUnwindSafe for b3HullVertex
impl Send for b3HullVertex
impl Sync for b3HullVertex
impl Unpin for b3HullVertex
impl UnsafeUnpin for b3HullVertex
impl UnwindSafe for b3HullVertex
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