pub enum EndType {
PolygonEnd,
JoinedEnd,
SquareEnd,
RoundEnd,
}Expand description
End cap / polygon closure mode for open paths in offsetting.
开放路径在偏移时的端点与闭合模式。
Variants§
PolygonEnd
Closed polygon. / 闭合多边形。
JoinedEnd
Open path with joined ends. / 开放路径且端点相连。
SquareEnd
Square end cap. / 平头端点。
RoundEnd
Round end cap. / 圆头端点。
Trait Implementations§
impl Copy for EndType
impl Eq for EndType
impl StructuralPartialEq for EndType
Auto Trait Implementations§
impl Freeze for EndType
impl RefUnwindSafe for EndType
impl Send for EndType
impl Sync for EndType
impl Unpin for EndType
impl UnsafeUnpin for EndType
impl UnwindSafe for EndType
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