/usr/share/perl5/Graphics/Primitive/Oriented.pm is in libgraphics-primitive-perl 0.61-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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | package Graphics::Primitive::Oriented;
use Moose::Role;
use Moose::Util::TypeConstraints;
enum 'Graphics::Primitive::Orientations' => qw(vertical horizontal);
has 'orientation' => (
is => 'rw',
isa => 'Graphics::Primitive::Orientations',
);
sub is_vertical {
my ($self) = @_;
return 0 unless $self->orientation;
return ($self->orientation eq 'vertical');
}
sub is_horizontal {
my ($self) = @_;
!$self->is_vertical;
}
no Moose;
1;
__END__
=head1 NAME
Graphics::Primitive::Oriented - Role for components that care about
orientation.
=head1 SYNOPSIS
Some components (or things that use components) require a bit more information
than origin and width/height. The orientation role allows a component to
specify whether is vertically or horizontally oriented.
package My::Component;
extends 'Graphics::Primitive::Component';
with 'Graphics::Primitive::Oriented';
1;
=head1 METHODS
=over
=item I<is_vertical>
Returns true if the component is vertically oriented.
=item I<is_horizontal>
Returns true if the component is not vertically oriented.
=item I<orientation>
The way a component is oriented. Values allowed are 'horizontal' or
'vertical'.
=back
=head1 AUTHOR
Cory Watson, C<< <gphat@cpan.org> >>
=head1 SEE ALSO
perl(1)
=head1 COPYRIGHT & LICENSE
Copyright 2008-2010 by Cory G Watson.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|