Trait nannou::draw::primitive::polygon::SetPolygon[][src]

pub trait SetPolygon: Sized {
    fn polygon_options_mut(&mut self) -> &mut PolygonOptions;

    fn no_fill(self) -> Self { ... }
fn stroke_color<C>(self, color: C) -> Self
    where
        C: IntoLinSrgba<ColorScalar>
, { ... }
fn polygon_options(self, opts: PolygonOptions) -> Self { ... } }
Expand description

A trait implemented for all polygon draw primitives.

Required methods

Access to the polygon builder parameters.

Provided methods

Specify no fill color and in turn no fill tessellation for the polygon.

Specify a color to use for stroke tessellation.

Stroke tessellation will only be performed if this method or one of the SetStroke methods are called.

Specify the whole set of polygon options.

Implementors