|
| 1 | +digraph pastafarianism { |
| 2 | +ordering=out; |
| 3 | +graph [fontname="times-roman"]; |
| 4 | +node [fontname="times-roman"]; |
| 5 | +edge [fontname="times-roman"]; |
| 6 | +"Count with Result" [fillcolor=cyan, fontcolor=black, fontsize=9, label="Count with Result", shape=octagon, style=filled]; |
| 7 | +"Work to Success" [fillcolor=orange, fontcolor=black, fontsize=9, label="Ⓜ Work to Success", shape=box, style=filled]; |
| 8 | +"Count with Result" -> "Work to Success"; |
| 9 | +Counter [fillcolor=gray, fontcolor=black, fontsize=9, label=Counter, shape=ellipse, style=filled]; |
| 10 | +"Work to Success" -> Counter; |
| 11 | +SetResultTrue [fillcolor=gray, fontcolor=black, fontsize=9, label=SetResultTrue, shape=ellipse, style=filled]; |
| 12 | +"Work to Success" -> SetResultTrue; |
| 13 | +"On Failure" [fillcolor=orange, fontcolor=black, fontsize=9, label="Ⓜ On Failure", shape=box, style=filled]; |
| 14 | +"Count with Result" -> "On Failure"; |
| 15 | +SetResultFalse [fillcolor=gray, fontcolor=black, fontsize=9, label=SetResultFalse, shape=ellipse, style=filled]; |
| 16 | +"On Failure" -> SetResultFalse; |
| 17 | +Failure [fillcolor=gray, fontcolor=black, fontsize=9, label=Failure, shape=ellipse, style=filled]; |
| 18 | +"On Failure" -> Failure; |
| 19 | +} |
0 commit comments