Skip to main content

void_graph/graph/
mod.rs

1//! Graph calculation and rendering.
2//!
3//! This module handles the visual layout of the commit graph,
4//! including position calculation and image generation.
5
6pub mod calc;
7pub mod geometry;
8
9pub use calc::{
10    calc_graph, calc_graph_owned, Edge, EdgeType, Graph, GraphContext, OwnedGraph,
11    SimpleGraphContext,
12};