plcviz 0.3.3

PLC code visualization - graphs, dependencies, and documentation
Documentation
1
2
3
4
5
6
7
8
9
//! Graph module for L5X visualization
//!
//! Provides a graph abstraction for L5X elements that can be rendered to SVG.

mod l5x_graph;
mod renderer;

pub use l5x_graph::{L5xGraph, L5xNode, L5xNodeType, L5xEdge};
pub use renderer::SvgRenderer;