NAME
Graph::Simple::Layout::Scout - Find paths in a manhattan-style grid
SYNOPSIS
use Graph::Simple;
my $graph = Graph::Simple->new();
my $bonn = Graph::Simple::Node->new(
name => 'Bonn',
);
my $berlin = Graph::Simple::Node->new(
name => 'Berlin',
);
$graph->add_edge ($bonn, $berlin);
$graph->layout();
print $graph->as_ascii( );
# prints:
# +------+ +--------+
# | Bonn | --> | Berlin |
# +------+ +--------+
DESCRIPTION
Graph::Simple::Layout::Scout
contains just the actual pathfinding code for Graph::Simple.
EXPORT
Exports nothing.
SEE ALSO
AUTHOR
Copyright (C) 2004 - 2005 by Tels http://bloodgate.com.
See the LICENSE file for information.