[][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>[src]

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

Initialise the PathOptions builder.

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

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

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

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

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

Closes the start and end points.

Trait Implementations

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]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Content for T[src]

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

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> SetParameter for T

impl<T> SetParameter for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,