plotpx 0.1.7

Pixel-focused plotting engine that renders magnitude grids, heatmaps, and spectra to RGBA buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(warnings)]

pub mod chart;
pub mod color_scheme;
pub mod ffi;
pub mod heatmap;
pub mod magnitude;
pub mod spectrum;
pub mod write_png;

pub use chart::*;
pub use color_scheme::*;
pub use heatmap::*;
pub use magnitude::*;
pub use spectrum::*;
pub use write_png::*;