NAME
Geometry::Primitive::Polygon
DESCRIPTION
Geometry::Primitive::Polygon represents a two dimensional figure bounded by a series of points that represent a closed path.
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
METHODS
Constructor
- new
-
Creates a new Geometry::Primitive::Polygon
Instance Methods
- add_point
-
Add a point to this polygon.
- clear_points
-
Clears all points from this polygon.
- count_points
-
Returns the number of points that bound this polygon.
- get_points
-
Returns all the points in this Polygon. Required by Shape.
- get_point_at
-
Returns the point at the specified offset.
AUTHOR
Cory Watson <gphat@cpan.org>
Infinity Interactive, http://www.iinteractive.com
COPYRIGHT & LICENSE
Copyright 2008 by Infinity Interactive, Inc.
You can redistribute and/or modify this code under the same terms as Perl itself.