]> granicus.if.org Git - graphviz/commitdiff
rename all .dot in graphs/ to .gv
authorellson <devnull@localhost>
Fri, 25 Jul 2008 16:28:53 +0000 (16:28 +0000)
committerellson <devnull@localhost>
Fri, 25 Jul 2008 16:28:53 +0000 (16:28 +0000)
fixup "make test" to use .gv

graphs/directed/records.gv [new file with mode: 0644]

diff --git a/graphs/directed/records.gv b/graphs/directed/records.gv
new file mode 100644 (file)
index 0000000..038edfb
--- /dev/null
@@ -0,0 +1,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";
+}