velociplot 0.1.0

Fast, publication-quality scientific plotting library - Quick, precise, and deadly effective
Documentation
1
2
3
4
5
6
7
8
9
10
//! Rendering backends

#[cfg(feature = "raster")]
pub mod skia;

#[cfg(feature = "raster")]
pub use skia::SkiaCanvas;

pub mod svg;
pub use svg::SvgCanvas;