File: compassports.dot

package info (click to toggle)
dot2tex 2.8.7%2Brepack-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,304 kB
  • ctags: 370
  • sloc: python: 3,495; makefile: 12
file content (18 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (3)
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;
	
}