[][src]Struct nannou::ui::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.

Methods

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> Debug for Lines<T> where
    T: Debug
[src]

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

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

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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

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> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

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.

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.