pub struct Inc {
pub id: usize,
pub forward: bool,
pub apex: u32,
}Expand description
One half-face incident to an arrangement edge.
Fields§
§id: usizeCaller-defined id of the half-face. build_cells passes the
piece index; the output pairing (robust::pairing) passes the
half-edge index — the fan sort itself never interprets it.
forward: boolTraversal runs key.0 → key.1 (the edge’s canonical direction).
apex: u32Vertex id of the opposite (apex) vertex.
Auto Trait Implementations§
impl Freeze for Inc
impl RefUnwindSafe for Inc
impl Send for Inc
impl Sync for Inc
impl Unpin for Inc
impl UnsafeUnpin for Inc
impl UnwindSafe for Inc
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