File: clusters.pl

package info (click to toggle)
libgraphviz-perl 2.16-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 940 kB
  • ctags: 67
  • sloc: perl: 2,059; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 529 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl -w
#
# This is a simple idea which illustrates the use
# of clusters to, well, cluster nodes together

use strict;
use lib '../lib';
use GraphViz;

my $g = GraphViz->new();

$g->add_node('London', cluster => 'Europe');
$g->add_node('Paris', label => 'City of\nlurve', cluster => 'Europe');
$g->add_node('New York');

$g->add_edge('London' => 'Paris');
$g->add_edge('London' => 'New York', label => 'Far');
$g->add_edge('Paris' => 'London');

#print $g->_as_debug;
#print $g->as_text;
$g->as_png("clusters.png");