[][src]Struct lyon_tessellation::StrokeOptions

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

start_cap: LineCap

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

Default value: LineCap::Butt.

end_cap: LineCap

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

Default value: LineCap::Butt.

line_join: LineJoin

See the SVG specification.

Default value: LineJoin::Miter.

line_width: f32

Line width

Default value: StrokeOptions::DEFAULT_LINE_WIDTH.

miter_limit: f32

See the SVG specification.

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

tolerance: f32

Maximum allowed distance to the path when building an approximation.

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

apply_line_width: bool

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.

Implementations

impl StrokeOptions[src]

pub const MINIMUM_MITER_LIMIT: f32[src]

Minimum miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

pub const DEFAULT_MITER_LIMIT: f32[src]

Default miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

pub const DEFAULT_LINE_CAP: LineCap[src]

pub const DEFAULT_LINE_JOIN: LineJoin[src]

pub const DEFAULT_LINE_WIDTH: f32[src]

pub const DEFAULT_TOLERANCE: f32[src]

pub const DEFAULT: Self[src]

pub fn tolerance(tolerance: f32) -> Self[src]

pub fn with_tolerance(self, tolerance: f32) -> Self[src]

pub fn with_line_cap(self, cap: LineCap) -> Self[src]

pub fn with_start_cap(self, cap: LineCap) -> Self[src]

pub fn with_end_cap(self, cap: LineCap) -> Self[src]

pub fn with_line_join(self, join: LineJoin) -> Self[src]

pub fn with_line_width(self, width: f32) -> Self[src]

pub fn with_miter_limit(self, limit: f32) -> Self[src]

pub fn dont_apply_line_width(self) -> Self[src]

Trait Implementations

impl Clone for StrokeOptions[src]

impl Copy for StrokeOptions[src]

impl Debug for StrokeOptions[src]

impl Default for StrokeOptions[src]

impl PartialEq<StrokeOptions> for StrokeOptions[src]

impl StructuralPartialEq for StrokeOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.