Skip to content

Bt To Tb

A BT section's RIGHT exit feeding a TB section's LEFT entry: an upward flow handing off to a downward one across the column seam (#1044).

Mermaid source
examples/topologies/bt_to_tb.mmd
%%metro title: BT Into TB
%%metro style: dark
%%metro line: a | A | #e63946
%%metro line: b | B | #0570b0
%%metro grid: up_sec | 0,0
%%metro grid: down_sec | 1,0
graph LR
subgraph up_sec [Ascend]
%%metro direction: BT
%%metro exit: right | a,b
u1[Collect]
u2[Reduce]
u1 -->|a,b| u2
end
subgraph down_sec [Descend]
%%metro direction: TB
%%metro entry: left | a,b
d1[Split]
d2[Emit]
d1 -->|a,b| d2
end
u2 -->|a,b| d1
CLI command
Terminal window
nf-metro render examples/topologies/bt_to_tb.mmd -o bt_to_tb.svg
Rendered map
BT Into TB 1 2 Collect Split Reduce Emit A B created with nf-metro v1.1.0+dev