pub enum FillRule {
NonZero,
EvenOdd,
}
Expand description
Rule determining if a point is inside a shape.
Variants§
NonZero
A point is inside the shape if a ray from the point crosses a non-zero sum of signed edge crossings.
EvenOdd
A point is inside the shape if a ray from the point crosses an odd number of edges.
Trait Implementations§
impl Copy for FillRule
impl Eq for FillRule
impl StructuralPartialEq for FillRule
Auto Trait Implementations§
impl Freeze for FillRule
impl RefUnwindSafe for FillRule
impl Send for FillRule
impl Sync for FillRule
impl Unpin for FillRule
impl UnwindSafe for FillRule
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