[][src]Enum sciter::graphics::LINE_JOIN

#[repr(C)]pub enum LINE_JOIN {
    MITER,
    ROUND,
    BEVEL,
    MITER_OR_BEVEL,
}

Line drawing join mode.

Variants

MITER

Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the length of the miter exceeds the miter limit (10.0).

ROUND

Specifies a circular join. This produces a smooth, circular arc between the lines.

BEVEL

Specifies a beveled join. This produces a diagonal corner.

MITER_OR_BEVEL

Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the length of the miter exceeds the miter limit (10.0).

Trait Implementations

impl Debug for LINE_JOIN[src]

impl PartialEq<LINE_JOIN> for LINE_JOIN[src]

impl StructuralPartialEq for LINE_JOIN[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.