Struct lyon::tessellation::FillOptions[][src]

pub struct FillOptions {
    pub tolerance: f32,
    pub fill_rule: FillRule,
    pub compute_normals: bool,
    pub assume_no_intersections: bool,
    pub on_error: OnError,
    // some fields omitted
}

Parameters for the fill tessellator.

Fields

Maximum allowed distance to the path when building an approximation.

See Flattening and tolerance.

Default value: FillOptions::DEFAULT_TOLERANCE.

Set the fill rule.

See the SVG specification. Currently, only the EvenOdd rule is implemented.

Default value: EvenOdd.

Whether or not to compute the normal vector at each vertex.

When set to false, all generated vertex normals are equal to vector(0.0, 0.0). Not computing vertex normals can speed up tessellation and enable generating less vertices at intersections.

Default value: true.

A fast path to avoid some expensive operations if the path is known to not have any self-intersections.

Do not set this to true if the path may have intersecting edges else the tessellator may panic or produce incorrect results. In doubt, do not change the default value.

Default value: false.

What to do if the tessellator detects an error.

Methods

impl FillOptions
[src]

DEFAULT_TOLERANCE: f32 = 0.1

Default flattening tolerance.

DEFAULT_FILL_RULE: FillRule = FillRule::EvenOdd

Default Fill rule.

DEFAULT: FillOptions = FillOptions{tolerance: <Self>::DEFAULT_TOLERANCE,
            fill_rule: <Self>::DEFAULT_FILL_RULE,
            compute_normals: true,
            assume_no_intersections: false,
            on_error: <OnError>::DEFAULT,
            _private: (),}

Trait Implementations

impl Clone for FillOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for FillOptions
[src]

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

impl Debug for FillOptions
[src]

Formats the value using the given formatter. Read more

impl Copy for FillOptions
[src]

impl PartialEq<FillOptions> for FillOptions
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for FillOptions

impl Sync for FillOptions