The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Chart::Clicker::Drawing::Component

DESCRIPTION

A Component is an entity with a graphical representation. Subclasses Graphics::Primitive::Component.

SYNOPSIS

  my $c = Chart::Clicker::Drawing::Component->new({
    location => Chart::Clicker::Drawing::Point->new({
        x => $x, y => $y
    }),
    width => 500, height => 350
  });

METHODS

Constructor

new
  my $c = Chart::Clicker::Drawing::Component->new({
    location => Chart::Clicker::Drawing::Point->new({
        x => $x, y => $y
    }),
    width => 500, height => 350
  });

Creates a new Component.

Instance Methods

clicker

Get this Component's instance of Chart::Clicker.

AUTHOR

Cory 'G' Watson <gphat@cpan.org>

SEE ALSO

perl(1), Graphics::Primitive

LICENSE

You can redistribute and/or modify this code under the same terms as Perl itself.