Skip to main content

r/interpreter/
grid.rs

1//! Grid graphics system — R's grid package data model.
2//!
3//! Provides viewports, grobs, a display list, and a renderer trait.
4//! This is the foundation for ggplot2-style layered graphics.
5
6pub mod display;
7pub mod gpar;
8pub mod grob;
9pub mod render;
10pub mod units;
11pub mod viewport;