[][src]Struct nannou::draw::primitive::path::PathOptions

pub struct PathOptions<T, S = Default> { /* fields omitted */ }

A path drawing context ready to specify tessellation options.

Methods

impl<T, S> PathOptions<T, S> where
    S: Zero
[src]

pub fn new(opts: T) -> Self[src]

Initialise the PathOptions builder.

impl<S> PathOptions<FillOptions, S>[src]

pub fn tolerance(self, tolerance: f32) -> Self[src]

Maximum allowed distance to the path when building an approximation.

This method is shorthand for the fill_tolerance method.

pub fn rule(self, rule: FillRule) -> Self[src]

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

Currently, only the EvenOdd rule is implemented.

This method is shorthand for the fill_rule method.

impl<S> PathOptions<StrokeOptions, S>[src]

pub fn weight(self, weight: f32) -> Self[src]

Short-hand for the stroke_weight method.

pub fn tolerance(self, tolerance: f32) -> Self[src]

Short-hand for the stroke_tolerance method.

impl<T, S> PathOptions<T, S> where
    T: TessellationOptions
[src]

pub fn points<I>(self, ctxt: DrawingContext<S>, points: I) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator,
    I::Item: Into<Point2<S>>, 
[src]

Consumes an iterator of points and converts them to an iterator yielding path events.

pub fn points_closed<I>(self, ctxt: DrawingContext<S>, points: I) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator,
    I::Item: Into<Point2<S>>, 
[src]

Consumes an iterator of points and converts them to an iterator yielding path events.

Closes the start and end points.

pub fn points_colored<I, P, C>(
    self,
    ctxt: DrawingContext<S>,
    points: I
) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator<Item = (P, C)>,
    P: Into<Point2<S>>,
    C: IntoLinSrgba<ColorScalar>, 
[src]

Submit path events as a polyline of colored points.

pub fn points_colored_closed<I, P, C>(
    self,
    ctxt: DrawingContext<S>,
    points: I
) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator<Item = (P, C)>,
    P: Into<Point2<S>>,
    C: IntoLinSrgba<ColorScalar>, 
[src]

Submit path events as a polyline of colored points.

pub fn points_textured<I, P, TC>(
    self,
    ctxt: DrawingContext<S>,
    texture_view: &dyn ToTextureView,
    points: I
) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator<Item = (P, TC)>,
    P: Into<Point2<S>>,
    TC: Into<TexCoords<S>>, 
[src]

Submit path events as a polyline of textured points.

pub fn points_textured_closed<I, P, TC>(
    self,
    ctxt: DrawingContext<S>,
    texture_view: &dyn ToTextureView,
    points: I
) -> Path<S> where
    S: BaseFloat,
    I: IntoIterator<Item = (P, TC)>,
    P: Into<Point2<S>>,
    TC: Into<TexCoords<S>>, 
[src]

Submit path events as a polyline of textured points.

Trait Implementations

impl<T: Clone, S: Clone> Clone for PathOptions<T, S>[src]

impl<T: Debug, S: Debug> Debug for PathOptions<T, S>[src]

impl<T, S> Default for PathOptions<T, S> where
    S: Zero,
    T: Default
[src]

impl<S> From<PathOptions<FillOptions, S>> for Primitive<S>[src]

impl<S> From<PathOptions<StrokeOptions, S>> for Primitive<S>[src]

impl<T, S> SetColor<f32> for PathOptions<T, S>[src]

impl<T, S> SetOrientation<S> for PathOptions<T, S>[src]

impl<T, S> SetPosition<S> for PathOptions<T, S>[src]

Auto Trait Implementations

impl<T, S> RefUnwindSafe for PathOptions<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, S> Send for PathOptions<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for PathOptions<T, S> where
    S: Sync,
    T: Sync

impl<T, S> Unpin for PathOptions<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> UnwindSafe for PathOptions<T, S> where
    S: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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

impl<T> SetParameter for T

impl<T> SetParameter for T

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,