pub struct IntersectNode {
pub pt: Point64,
pub edge1: usize,
pub edge2: usize,
}Expand description
Intersection between two active edges Direct port from clipper.engine.h line 139
Fields§
§pt: Point64§edge1: usize§edge2: usizeImplementations§
Source§impl IntersectNode
impl IntersectNode
Trait Implementations§
Source§impl Clone for IntersectNode
impl Clone for IntersectNode
Source§fn clone(&self) -> IntersectNode
fn clone(&self) -> IntersectNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntersectNode
impl Debug for IntersectNode
Auto Trait Implementations§
impl Freeze for IntersectNode
impl RefUnwindSafe for IntersectNode
impl Send for IntersectNode
impl Sync for IntersectNode
impl Unpin for IntersectNode
impl UnwindSafe for IntersectNode
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