/usr/lib/perl5/SWF/Morph.pm is in libswf-perl 1:0.4.4-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # ====================================================================
# Copyright (c) 2000-2001 by Soheil Seyfaie. All rights reserved.
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
# ====================================================================
# $Author$
# $Id$
package SWF::Morph;
use SWF ();
$SWF::Morph::VERSION = $SWF::VERSION;
sub getShapes{
my $self = shift;
return ($self->getShape1(), $self->getShape2());
}
1;
__END__
=head1 NAME
SWF::Morph - SWF Morph Class
=head1 SYNOPSIS
use SWF::Morph;
my $morph = new SWF::Morph();
=head1 DESCRIPTION
SWF::Morph twist from one shape to another.
=head1 METHODS
=over 4
=item new SWF::Morph();
Returns an SWF::Morph object.
=item ($shape1, $shape2) = $morph->getShapes();
Returns two SWF::Shape objects. The first one (shape1) is the morph's starting shape while shape2 is its final shape. You may also use "getShape1()" and "getShape2()" methods to get a handle of these shapes.
=item $shape1 = $morph->getShape1();
Returns the morph's starting shape.
=item $shape2 = $morph->getShape2();
Returns the morph's final shape.
=back
=head1 AUTHOR
Soheil Seyfaie (soheil@netcom.ca).
=head1 SEE ALSO
SWF, SWF::DisplayItem, SWF::Shape, SWF::Movie, SWF::MovieClip
=cut
|