[]Struct ggez::graphics::FillOptions

pub struct FillOptions {
    pub tolerance: f32,
    pub fill_rule: FillRule,
    pub compute_normals: bool,
    pub assume_no_intersections: bool,
    pub on_error: OnError,
    // some fields omitted
}

Parameters for the fill tessellator.

Fields

tolerance: f32

Maximum allowed distance to the path when building an approximation.

See Flattening and tolerance.

Default value: FillOptions::DEFAULT_TOLERANCE.

fill_rule: FillRule

Set the fill rule.

See the SVG specification. Currently, only the EvenOdd rule is implemented.

Default value: EvenOdd.

compute_normals: bool

Whether or not to compute the normal vector at each vertex.

When set to false, all generated vertex normals are equal to vector(0.0, 0.0). Not computing vertex normals can speed up tessellation and enable generating less vertices at intersections.

Default value: true.

assume_no_intersections: bool

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

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.

on_error: OnError

What to do if the tessellator detects an error.

Methods

impl FillOptions

pub const DEFAULT_TOLERANCE: f32

Default flattening tolerance.

pub const DEFAULT_FILL_RULE: FillRule

Default Fill rule.

pub const DEFAULT: FillOptions

pub fn even_odd() -> FillOptions

pub fn tolerance(tolerance: f32) -> FillOptions

pub fn non_zero() -> FillOptions

pub fn with_tolerance(self, tolerance: f32) -> FillOptions

pub fn with_normals(self, normals: bool) -> FillOptions

pub fn assume_no_intersections(self) -> FillOptions

pub fn on_error(self, policy: OnError) -> FillOptions

Trait Implementations

impl Copy for FillOptions

impl Default for FillOptions

impl Clone for FillOptions

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for FillOptions

impl PartialEq<FillOptions> for FillOptions

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.