layers.gv 258 B

123456789
  1. digraph G {
  2. layers="local:pvt:test:new:ofc";
  3. node1 [layer="pvt"];
  4. node2 [layer="all"];
  5. node3 [layer="pvt:ofc"]; /* pvt, test, new, and ofc */
  6. node2 -> node3 [layer="pvt:all"]; /* same as pvt:ofc */
  7. node2 -> node4 [layer=3]; /* same as test */
  8. }