logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Cory Watson, "<gphat@cpan.org>"

Methods

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'.

Name

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

See Also

perl(1)

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;

See Also