pub enum LineJoin {
Miter,
Round,
Bevel,
}Expand description
How two segments meet at a corner — ISO 32000-1 §8.4.3.4’s line join
style, written as j.
Variants§
Miter
Extended outer edges meeting in a point, beveled past
Stroke::miter_limit. PDF’s default.
Round
An arc of the line’s width around the corner point.
Bevel
The notch between the two segments filled with a triangle.
Trait Implementations§
impl Copy for LineJoin
impl Eq for LineJoin
impl StructuralPartialEq for LineJoin
Auto Trait Implementations§
impl Freeze for LineJoin
impl RefUnwindSafe for LineJoin
impl Send for LineJoin
impl Sync for LineJoin
impl Unpin for LineJoin
impl UnsafeUnpin for LineJoin
impl UnwindSafe for LineJoin
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