pub struct Vertex {
pub pt: Point64,
pub next: usize,
pub prev: usize,
pub flags: VertexFlags,
}Expand description
Input polygon vertex (circular doubly-linked list via arena indices) Direct port from clipper.engine.h line 48
Fields§
§pt: Point64§next: usize§prev: usize§flags: VertexFlagsImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vertex
impl RefUnwindSafe for Vertex
impl Send for Vertex
impl Sync for Vertex
impl Unpin for Vertex
impl UnwindSafe for Vertex
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