Struct lyon_tessellation::path_stroke::StrokeOptions [] [src]

pub struct StrokeOptions {
    pub line_cap: LineCap,
    pub line_join: LineJoin,
    pub miter_limit: f32,
    pub tolerance: f32,
    pub vertex_aa: bool,
    // some fields omitted
}

Parameters for the tessellator.

Fields

See the SVG secification.

See the SVG secification.

Not implemented yet!

See the SVG secification.

Not implemented yet!

Maximum allowed distance to the path when building an approximation.

An anti-aliasing trick extruding a 1-px wide strip around the edges with a gradient to smooth the edges.

Not implemented yet!

Methods

impl StrokeOptions
[src]

Trait Implementations

impl Copy for StrokeOptions
[src]

impl Clone for StrokeOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StrokeOptions
[src]

Formats the value using the given formatter.

impl PartialEq for StrokeOptions
[src]

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

This method tests for !=.