Dot
Sketcher
SVG
Download PNG
DOT Source
digraph G { rankdir=LR; node [shape=rect style=filled]; Start [shape=circle]; End [shape=doublecircle]; Start -> Process_1 [label="init"]; Process_1 -> Decision [label="check"]; Decision -> Process_2 [label="yes"]; Decision -> Error [label="no" color="red" fontcolor="red"]; Process_2 -> End [label="finish"]; Error -> End; subgraph cluster_0 { label = "Core Logic"; style=dashed; Process_1; Decision; Process_2; } }
Ready