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::Polygon - Closed shape with an arbitrary number of points.

Attributes

points
       Set/Get the arrayref of points that make up this Polygon.

Author

       Cory Watson <gphat@cpan.org>

Description

       Geometry::Primitive::Polygon represents a two dimensional figure bounded by a series of points that
       represent a closed path.

Methods

new
       Creates a new Geometry::Primitive::Polygon

   area
       Area of this polygon.  Assumes it is non-self-intersecting.

   add_point
       Add a point to this polygon.

   clear_points
       Clears all points from this polygon.

   point_count
       Returns the number of points that bound this polygon.

   get_point
       Returns the point at the specified offset.

   point_end
       Get the end point.  Provided for Shape role.

   point_start
       Get the start point.  Provided for Shape role.

   scale($amount)
       Scale this this polygon by the supplied amount.

Name

       Geometry::Primitive::Polygon - Closed shape with an arbitrary number of points.

Synopsis

         use Geometry::Primitive::Polygon;

         my $poly = Geometry::Primitive::Polygon->new;
         $poly->add_point($point1);
         $poly->add_point($point2);
         $poly->add_point($point3);
         # No need to close the path, it's handled automatically

See Also