flat 0.1.6

Project multi-dimensional data onto the **flat** textual plane.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// We use this in the doc strings.
#[allow(unused_imports)]
use super::PathChart;

/// Render configuration specific to [`PathChart`]s.
///
/// ### Example
/// ```
/// # use flat::PathChartConfig;
/// let pathchart_config = PathChartConfig {
///     ..PathChartConfig::default()
/// };
/// ```
#[derive(Debug, Default)]
pub struct PathChartConfig {}