File: records.dot

package info (click to toggle)
python-pydotplus 2.0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,832 kB
  • sloc: python: 1,755; makefile: 164
file content (17 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
digraph G {
	rankdir=LR;
	node [shape=record];
	a [ label ="<bala> Graphs can\lbe fun\l|<f1> mid|<f2> right"];
	b [ label ="<left>   |<mid> b |   " ];
	c [ label ="<p1>   | c |<p2>   " ];
	x [ label ="<p1>   | x |<p2>   " ];
	y [ label ="<p1>   | y |<p2>   " ];
	z [ label ="   | z |<p2>   " ];
	a:bala -> b:left;
	a:f1 -> d;
	a:f2 -> y:"p1";
	c:"p1" -> d;
	b:mid -> x:"p1";
	c:"p2" -> y:"p2";
	b:left -> z:"p2";
}