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

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

Line drawing join mode.

Variants

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).

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

Specifies a beveled join. This produces a diagonal corner.

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]

Formats the value using the given formatter. Read more

impl PartialEq for LINE_JOIN
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for LINE_JOIN

impl Sync for LINE_JOIN