Struct lyon_tessellation::FillOptions [] [src]

pub struct FillOptions {
    pub tolerance: f32,
    pub fill_rule: FillRule,
    pub compute_normals: bool,
    pub assume_no_intersections: bool,
    // 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 vec2(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.

Methods

impl FillOptions
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Copy for FillOptions
[src]

impl Clone for FillOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FillOptions
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for FillOptions
[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 FillOptions
[src]

[src]

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