example_bt.gv 799 B

123456789101112131415161718192021
  1. digraph {
  2. none [shape = none, label = ""]
  3. root [shape = folder, label = ""];
  4. phone [shape = invtriangle, label = ""];
  5. editor [shape = circle, label = ""];
  6. laptop [shape = invtriangle, label = ""];
  7. viewer [shape = circle, label = ""];
  8. docs [shape = folder, label = ""];
  9. resignation [shape = box, label = ""];
  10. contract [shape = box, label = ""];
  11. avatar [shape = box, label = ""];
  12. none -> root [label = "<root>"]
  13. root -> phone [label = "phone"];
  14. phone -> viewer [label = "<editor1>"];
  15. root -> laptop [label = "laptop"];
  16. laptop -> editor [label = "<editor2>"];
  17. root -> docs [label = "docs"];
  18. docs -> resignation [label = "resignation.docx"];
  19. docs -> contract [label = "contract.docx"];
  20. root -> avatar [label = "avatar.usd"];
  21. }