Struct lyon_tessellation::FillVertex [] [src]

pub struct FillVertex {
    pub position: Point,
    pub normal: Vector,
}

Vertex produced by the fill tessellators.

Fields

Position of the vertex (on the path).

Normal at this vertex such that extruding the vertices along the normal would produce a stroke of width 2.0 (1.0 on each side). This vector is not normalized.

Note that some tessellators aren't fully implemented and don't provide the normal (a nil vector is provided instead). Refer the documentation of each tessellator.

Trait Implementations

impl Copy for FillVertex
[src]

impl Clone for FillVertex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FillVertex
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for FillVertex
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for FillVertex

impl Sync for FillVertex