Skip to content

twopi — 8 goldens

Radial layout around a root node. Each graph below is rendered live in your browser by the library.

rendering…
twopi-stardeterministicStar graph with center and 5 leaf nodes
DOT source
// @knowvah/dot-engine reference input: star graph with center and 5 leaf nodes
// engine: twopi
// tolerance: deterministic
graph G {
    center -- L1;
    center -- L2;
    center -- L3;
    center -- L4;
    center -- L5;
}
rendering…
twopi-chaindeterministicPath graph with 5 nodes in a chain
DOT source
// @knowvah/dot-engine reference input: path graph with 5 nodes in a chain
// engine: twopi
// tolerance: deterministic
graph G {
    A -- B -- C -- D -- E;
}
rendering…
twopi-treedeterministicBinary tree with 7 nodes
DOT source
// @knowvah/dot-engine reference input: binary tree with 7 nodes
// engine: twopi
// tolerance: deterministic
graph G {
    root -- l1;
    root -- r1;
    l1 -- l2;
    l1 -- l3;
    r1 -- r2;
    r1 -- r3;
}
rendering…
twopi-root-attrdeterministic6-node graph with one node having root=true
DOT source
// @knowvah/dot-engine reference input: 6-node graph with one node having root=true
// engine: twopi
// tolerance: deterministic
graph G {
    center [root=true];
    center -- A;
    center -- B;
    center -- C;
    A -- D;
    B -- E;
}
rendering…
twopi-disconnecteddeterministicTwo separate 3-node star subgraphs
DOT source
// @knowvah/dot-engine reference input: two separate 3-node star subgraphs
// engine: twopi
// tolerance: deterministic
graph G {
    c1 -- a1;
    c1 -- b1;
    c2 -- a2;
    c2 -- b2;
}
rendering…
twopi-ranksepdeterministic6-node star graph with ranksep=2.0
DOT source
// @knowvah/dot-engine reference input: 6-node star graph with ranksep=2.0
// engine: twopi
// tolerance: deterministic
graph G {
    ranksep=2.0;
    center -- A;
    center -- B;
    center -- C;
    center -- D;
    center -- E;
}
rendering…
twopi-single-nodedeterministicSingle-node graph; ref: graphviz 15.0.0 dot -Ktwopi -Tsvg
DOT source
// @knowvah/dot-engine reference input: single-node graph
// engine: twopi
// tolerance: deterministic
graph G {
    A;
}
rendering…
twopi-self-loopdeterministic3-node undirected path with a self-loop on one node; ref: graphviz 15.0.0 dot -Ktwopi -Tsvg; promoted from quarantine (mission 9, post-parity T2 mining)
DOT source
// @knowvah/dot-engine reference input: 3-node graph with a self-loop
// engine: twopi
// tolerance: deterministic
graph G {
    A -- A;
    A -- B;
    B -- C;
}