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]

MINIMUM_MITER_LIMIT: f32 = 1.0

Minimum miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

DEFAULT_MITER_LIMIT: f32 = 4.0

Default miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

DEFAULT_LINE_CAP: LineCap = LineCap::Butt

DEFAULT_LINE_JOIN: LineJoin = LineJoin::Miter

DEFAULT_LINE_WIDTH: f32 = 1.0

DEFAULT_TOLERANCE: f32 = 0.1

DEFAULT: Self = StrokeOptions{start_cap: <Self>::DEFAULT_LINE_CAP,
              end_cap: <Self>::DEFAULT_LINE_CAP,
              line_join: <Self>::DEFAULT_LINE_JOIN,
              line_width: <Self>::DEFAULT_LINE_WIDTH,
              miter_limit: <Self>::DEFAULT_MITER_LIMIT,
              tolerance: <Self>::DEFAULT_TOLERANCE,
              apply_line_width: true,
              _private: (),}

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. Read more

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 !=.

impl Default for StrokeOptions
[src]

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

Auto Trait Implementations