Enum printpdf::types::plugins::graphics::extgstate::LineJoinStyle[][src]

pub enum LineJoinStyle {
    Miter,
    Round,
    Limit,
}

See PDF Reference Page 216 - Line join style

Variants

Miter join. The outer edges of the strokes for the two segments are extended until they meet at an angle, as in a picture frame. If the segments meet at too sharp an angle (as defined by the miter limit parameter—see “Miter Limit,” above), a bevel join is used instead.

Round join. An arc of a circle with a diameter equal to the line width is drawn around the point where the two segments meet, connecting the outer edges of the strokes for the two segments. This pieslice-shaped figure is filled in, pro- ducing a rounded corner.

Bevel join. The two segments are finished with butt caps (see “Line Cap Style” on page 216) and the resulting notch beyond the ends of the segments is filled with a triangle.

Trait Implementations

impl Debug for LineJoinStyle
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LineJoinStyle
[src]

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

This method tests for !=.

impl Copy for LineJoinStyle
[src]

impl Clone for LineJoinStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Into<i64> for LineJoinStyle
[src]

Performs the conversion.

impl Into<Operation> for LineJoinStyle
[src]

Performs the conversion.

impl Into<Object> for LineJoinStyle
[src]

Performs the conversion.

Auto Trait Implementations