[][src]Struct nannou::ui::prelude::widget::grid::Lines

pub struct Lines<T> {
    pub step: T,
    pub offset: Option<T>,
    pub thickness: Option<f64>,
    pub color: Option<Color>,
}

A series of lines distributed across an axis.

Fields

step: T

The distance that separates each line.

offset: Option<T>

An optional offset for the lines along they're axis.

thickness: Option<f64>

The thickness of each of the lines drawn.

If None, the thickness specified within the Style is used.

color: Option<Color>

The color of each of the lines drawn.

If None, the color specified within the Style is used.

Implementations

impl<T> Lines<T>[src]

pub fn step(step: T) -> Lines<T>[src]

Begin building a new set of lines for the grid step distance apart.

Lines with a step that equates to 0.0 or less will not be drawn.

pub fn offset(self, offset: T) -> Lines<T>[src]

Specify an offset for the grid.

Offsets that are greater than the step size will be wrapped around the step size.

pub fn thickness(self, thickness: f64) -> Lines<T>[src]

Specify a unique thickness for these lines.

pub fn color(self, color: Color) -> Lines<T>[src]

Use the specified color to uniquely color the this set of lines.

pub fn x<Y>(self) -> Axis<T, Y>[src]

Move the lines over the X axis.

pub fn y<X>(self) -> Axis<X, T>[src]

Move the lines over the Y axis.

Trait Implementations

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

impl<T> Copy for Lines<T> where
    T: Copy
[src]

impl<T> Debug for Lines<T> where
    T: Debug
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Lines<T> where
    T: RefUnwindSafe

impl<T> Send for Lines<T> where
    T: Send

impl<T> Sync for Lines<T> where
    T: Sync

impl<T> Unpin for Lines<T> where
    T: Unpin

impl<T> UnwindSafe for Lines<T> where
    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> 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>,