Graphics::Primitive::Oriented - Role for components that care about


Graphics-Primitive documentation Contained in the Graphics-Primitive distribution.

Index


Code Index:

NAME

Top

Graphics::Primitive::Oriented - Role for components that care about orientation.

SYNOPSIS

Top

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;

METHODS

Top

is_vertical

Returns true if the component is vertically oriented.

is_horizontal

Returns true if the component is not vertically oriented.

orientation

The way a component is oriented. Values allowed are 'horizontal' or 'vertical'.

AUTHOR

Top

Cory Watson, <gphat@cpan.org>

SEE ALSO

Top

perl(1)

COPYRIGHT & LICENSE

Top


Graphics-Primitive documentation Contained in the Graphics-Primitive distribution.

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__