home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 7: Programming
/
CDAT7.iso
/
Share
/
Editores
/
Perl5
/
perl
/
lib
/
site
/
auto
/
Tk
/
Ghostscript
/
BoundingBox.al
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-10
|
332 b
|
15 lines
# NOTE: Derived from ..\blib\lib\Tk\Ghostscript.pm. Changes made here will be lost.
package Tk::Ghostscript;
sub BoundingBox
{
my $w = shift;
return @{$w->{'BoundingBox'}} unless (@_);
croak "Invalid bounding box" . Pretty(\@_) unless (@_ == 4);
my @bb = @_;
$w->{'BoundingBox'} = \@bb;
$w->ChangeView;
}
1;