pub trait TessellationOptions {
    type Tessellator;

    // Required method
    fn into_options(self) -> Options;
}
Expand description

A set of path tessellation options (FillOptions or StrokeOptions).

Required Associated Types§

source

type Tessellator

The tessellator for which the options are built.

Required Methods§

source

fn into_options(self) -> Options

Convert the typed options instance to a dynamic one.

Implementations on Foreign Types§

source§

impl TessellationOptions for FillOptions

§

type Tessellator = FillTessellator

source§

fn into_options(self) -> Options

source§

impl TessellationOptions for StrokeOptions

§

type Tessellator = StrokeTessellator

source§

fn into_options(self) -> Options

Implementors§