![]() |
![]()
| ![]() |
![]()
NAMEGeometry::Primitive::Polygon - Closed shape with an arbitrary number of points. DESCRIPTIONGeometry::Primitive::Polygon represents a two dimensional figure bounded by a series of points that represent a closed path. SYNOPSISuse 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 ATTRIBUTESpointsSet/Get the arrayref of points that make up this Polygon. METHODSnewCreates a new Geometry::Primitive::Polygon areaArea of this polygon. Assumes it is non-self-intersecting. add_pointAdd a point to this polygon. clear_pointsClears all points from this polygon. point_countReturns the number of points that bound this polygon. get_pointReturns the point at the specified offset. point_endGet the end point. Provided for Shape role. point_startGet the start point. Provided for Shape role. scale ($amount)Scale this this polygon by the supplied amount. AUTHORCory Watson <gphat@cpan.org> COPYRIGHT & LICENSEYou can redistribute and/or modify this code under the same terms as Perl itself.
|