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
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Interpolation {
    /// Connect points with straight lines (default)
    Linear,
    /// Smooth curve using cubic Bezier interpolation
    Bezier,
    /// Step function - horizontal then vertical lines
    Step,
    /// Smooth spline interpolation
    Spline,
}