File: compassports.dot

package info (click to toggle)
dot2tex 2.11.3-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,740 kB
  • sloc: python: 3,673; makefile: 119
file content (18 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Test compass points */
digraph g {
	graph [rankdir=LR];
	node [shape=rectangle];
	a [label="node A"];
	b [label="node B"];
	a:n ->  b:n;
	a:ne ->  b:ne;
	a:e ->  b:e;
	a:se -> b:se;
	a:s -> b:s;
	a:sw -> b:sw;
	a:w -> b:w;
	a:nw -> b:nw;
	a:center -> b:center;
	a:dummy -> c:dummy;
	
}