NAME

Graph::Easy::As_svg - Output graph as Scalable Vector Graphics (SVG)

SYNOPSIS

use Graph::Easy;

my $graph = Graph::Easy->new();

my $bonn = Graph::Easy::Node->new(
	name => 'Bonn',
);
my $berlin = Graph::Easy::Node->new(
	name => 'Berlin',
);

$graph->add_edge ($bonn, $berlin);

print $graph->as_svg();

# prints something like:

DESCRIPTION

Graph::Easy::As_svg contains just the code for converting a Graph::Easy object to a SVG text.

EXPORT

Exports nothing.

SEE ALSO

Graph::Easy.

AUTHOR

Copyright (C) 2004 - 2005 by Tels http://bloodgate.com

See the LICENSE file for information.