~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to graphs/directed/records.dot

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph G {
 
2
        rankdir=LR;
 
3
        node [shape=record];
 
4
        a [ label ="<bala> Graphs can\lbe fun\l|<f1> mid|<f2> right"];
 
5
        b [ label ="<left>   |<mid> b |   " ];
 
6
        c [ label ="<p1>   | c |<p2>   " ];
 
7
        x [ label ="<p1>   | x |<p2>   " ];
 
8
        y [ label ="<p1>   | y |<p2>   " ];
 
9
        z [ label ="   | z |<p2>   " ];
 
10
        a:bala -> b:left;
 
11
        a:f1 -> d;
 
12
        a:f2 -> y:"p1";
 
13
        c:"p1" -> d;
 
14
        b:mid -> x:"p1";
 
15
        c:"p2" -> y:"p2";
 
16
        b:left -> z:"p2";
 
17
}