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

NAME

App::MathImage::Image::Base::Tektronix -- image drawing to a Tektronix terminal

SYNOPSIS

 use App::MathImage::Image::Base::Tektronix;
 my $image = App::MathImage::Image::Base::Tektronix->new;
 $image->rectangle (0,0, 99,99, 'black');
 $image->xy (20,20, 'black');
 $image->line (50,50, 70,70, 'black');
 $image->line (50,50, 70,70, 'black');

CLASS HIERARCHY

App::MathImage::Image::Base::Tektronix is a subclass of Image::Base.

    Image::Base
      App::MathImage::Image::Base::Tektronix

DESCRIPTION

App::MathImage::Image::Base::Tektronix extends Image::Base to emit a Tektronix terminal escape sequences.

FUNCTIONS

$image = App::MathImage::Image::Base::Tektronix->new (key=>value,...)

Create and return a new image object.

ATTRIBUTES

-width (integer)
-height (integer)

The size of the terminal in its addressable units. For 12-bit addressing this is width=4096, height=3072. The actual visible resolution may be less than this, in particular in various emulators it's almost certainly less.

SEE ALSO

Image::Base