#[repr(C)]pub struct b3HullHalfEdge {
pub next: u8,
pub twin: u8,
pub origin: u8,
pub face: u8,
}Expand description
Half-edge for hull data structure
Fields§
§next: u8Next edge index CCW
twin: u8Twin edge index
origin: u8index of origin vertex and point
face: u8Face to the left of this edge
Trait Implementations§
Source§impl Clone for b3HullHalfEdge
impl Clone for b3HullHalfEdge
Source§fn clone(&self) -> b3HullHalfEdge
fn clone(&self) -> b3HullHalfEdge
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 b3HullHalfEdge
Auto Trait Implementations§
impl Freeze for b3HullHalfEdge
impl RefUnwindSafe for b3HullHalfEdge
impl Send for b3HullHalfEdge
impl Sync for b3HullHalfEdge
impl Unpin for b3HullHalfEdge
impl UnsafeUnpin for b3HullHalfEdge
impl UnwindSafe for b3HullHalfEdge
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