[][src]Trait nannou::draw::properties::fill::SetFill

pub trait SetFill: Sized {
    fn fill_options_mut(&mut self) -> &mut FillOptions;

    fn fill_opts(self, opts: FillOptions) -> Self { ... }
fn fill_tolerance(self, tolerance: f32) -> Self { ... }
fn fill_rule(self, rule: FillRule) -> Self { ... }
fn assume_no_intersections(self, b: bool) -> Self { ... } }

Nodes that support fill tessellation.

This trait allows the Drawing context to automatically provide an implementation of the following builder methods for all primitives that provide some fill tessellation options.

Required methods

fn fill_options_mut(&mut self) -> &mut FillOptions

Provide a mutable reference to the FillOptions field.

Loading content...

Provided methods

fn fill_opts(self, opts: FillOptions) -> Self

Specify the whole set of fill tessellation options.

fn fill_tolerance(self, tolerance: f32) -> Self

Maximum allowed distance to the path when building an approximation.

fn fill_rule(self, rule: FillRule) -> Self

Specify the rule used to determine what is inside and what is outside of the shape.

Currently, only the EvenOdd rule is implemented.

fn assume_no_intersections(self, b: bool) -> Self

A fast path to avoid some expensive operations if the path is known to not have any self-intesections.

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.

Loading content...

Implementations on Foreign Types

impl SetFill for Option<FillOptions>[src]

Loading content...

Implementors

impl<S> SetFill for PathFill<S>[src]

Loading content...