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

Geometry::Primitive::Rectangle - 4 sided polygon

Attributes

height
       Set/Get the height of this Rectangle.

   origin
       Set/Get the origin of this rectangle.

   width
       Set/Get the width of this Rectangle.

Author

       Cory Watson <gphat@cpan.org>

Description

       Geometry::Primitive::Rectangle a space defined by a point, a width and a height.

Methods

new
       Creates a new Geometry::Primitive::Rectangle

   area
       Returns the area of this rectangle.

   get_points
       Get the points that make up this Rectangle.

   point_end
       Get the end point.  Returns the origin. Provided for Shape role.

   point_start
       Get the start point.  Returns the origin.  Provided for Shape role.

   scale($amount)
       Scales the hieght and width of this rectangle by the amount specified.

Name

       Geometry::Primitive::Rectangle - 4 sided polygon

Synopsis

         use Geometry::Primitive::Rectangle;

         my $poly = Geometry::Primitive::Rectangle->new();
         $poly->add_point($point1);
         $poly->height(100);
         $poly->width(100);

See Also