yui-link 0.5.0

Knots & Links Library for YUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Planar diagrams: the [`Link`] type, its nodes and components, PD-code
//! conversion, and the builder that assembles a diagram port by port.

mod link;
mod link_ops;
mod node;
mod path;
mod pd_code;
mod builder;
mod construct;

pub use link::{Link, Edge, State, StateRepr};
pub use pd_code::PDCodeX;
pub use node::{Node, NodeType, Slot};
pub use path::Path;
pub use builder::{LinkBuilder, LinkError, Port};