Struct lyon_tessellation::StrokeOptions [] [src]

pub struct StrokeOptions {
    pub start_cap: LineCap,
    pub end_cap: LineCap,
    pub line_join: LineJoin,
    pub line_width: f32,
    pub miter_limit: f32,
    pub tolerance: f32,
    pub apply_line_width: bool,
    // some fields omitted
}

Parameters for the tessellator.

Fields

What cap to use at the start of each sub-path.

Default value: LineCap::Butt.

What cap to use at the end of each sub-path.

Default value: LineCap::Butt.

See the SVG specification.

Default value: LineJoin::Miter.

Line width

Default value: StrokeOptions::DEFAULT_LINE_WIDTH.

See the SVG specification.

Must be greater than or equal to 1.0. Default value: StrokeOptions::DEFAULT_MITER_LIMIT.

Maximum allowed distance to the path when building an approximation.

See Flattening and tolerance. Default value: StrokeOptions::DEFAULT_TOLERANCE.

Apply line width

When set to false, the generated vertices will all be positioned in the centre of the line. The width can be applied later on (eg in a vertex shader) by adding the vertex normal multiplied by the line with to each vertex position.

Default value: true.

Methods

impl StrokeOptions
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Copy for StrokeOptions
[src]

impl Clone for StrokeOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StrokeOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for StrokeOptions
[src]

[src]

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

[src]

This method tests for !=.

impl Default for StrokeOptions
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for StrokeOptions

impl Sync for StrokeOptions