Trait textplots::Plot[][src]

pub trait Plot {
    fn lineplot(
        &mut self,
        func: impl Fn(f32) -> f32
    ) -> &mut Chart; }

Provides an interface for drawing plots.

Required Methods

Draws a line chart of points connected by straight line segments.

Implementors