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

source§

impl TessellationOptions for StrokeOptions

Implementors§