| Treemap documentation | Contained in the Treemap distribution. |
Treemap::Simple - Create Treemaps from arbitrary data.
use Treemap; $tmap = Treemap->new();
Create Treemaps from arbitrary data.
None by default.
Simon Ditner, <simon@uc.org> Eric Maki, <eric@uc.org>
perl.
| Treemap documentation | Contained in the Treemap distribution. |
package Treemap::Simple; use 5.006; use strict; use warnings; use Carp; require Exporter; our @ISA = qw(Exporter Treemap); our @EXPORT_OK = ( ); our @EXPORT = qw( ); our $VERSION = '0.01'; # ------------------------------------------ # Methods: # ------------------------------------------ # ------------------------------------------ # new() - Create and return new Treemap # object: # ------------------------------------------ sub new { my $proto = shift; my $class = ref( $proto ) || $proto; my $self = {}; bless $self, $class; return $self; } 1; __END__ # ------------------------------------------ # Documentation: # ------------------------------------------