quill 0.2.0

A lightweight Rust plotting library for creating simple SVG 2D plots
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Quill prelude
//!
//! This module re-exports the most commonly used items from the Quill library.

pub use crate::color::Color;
pub use crate::plot::Plot;
pub use crate::series::Series;
pub use crate::traits::PlotValue;

// Re-export all elements
pub use crate::elements::*;

// Re-export all style types
pub use crate::style::*;