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

DEFAULT_MITER_LIMIT: f32 = 4.0

DEFAULT_LINE_CAP: LineCap = LineCap::Butt

DEFAULT_LINE_JOIN: LineJoin = LineJoin::Miter

DEFAULT_LINE_WIDTH: f32 = 1.0

DEFAULT_TOLERANCE: f32 = 0.1

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

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Copy for StrokeOptions
[src]

impl Clone for StrokeOptions
[src]

impl PartialEq<StrokeOptions> for StrokeOptions
[src]

[src]

[src]

impl Debug for StrokeOptions
[src]

[src]

impl Default for StrokeOptions
[src]