ruviz 0.4.7

High-performance 2D plotting library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Additional shape primitives for advanced plot types
//!
//! This module provides geometric primitives needed by specialized plots:
//! - Arc/wedge for pie charts
//! - Filled polygon for violin, radar charts
//! - Arrow for quiver plots

pub mod arc;
pub mod arrow;
pub mod polygon;

pub use arc::{Arc, Wedge, pie_wedges};
pub use arrow::Arrow;
pub use polygon::Polygon;