plcviz 0.3.3

PLC code visualization - graphs, dependencies, and documentation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Custom SVG generation module
//!
//! Provides full control over SVG output with clean, valid SVG.

mod builder;
mod elements;
mod style;

pub use builder::SvgBuilder;
pub use elements::*;
pub use style::{Style, Color};