|
NAMEMath::Geometry::Planar::Offset - Calculate offset polygonsSYNOPSISuse Math::Geometry::Planar::Offset; my (@results) = OffsetPolygon(\@points, $distance); foreach my $polygon (@results) { # do something with @$polygon } AUTHOREric Wilhelm @ <ewilhelm at cpan dot org>COPYRIGHT NOTICECopyright (C) 2003-2007 Eric L. Wilhelm. All rights reserved.NO WARRANTYAbsolutely, positively NO WARRANTY, neither express or implied, is offered with this software. You use this software at your own risk. In case of loss, neither Eric Wilhelm, nor anyone else, owes you anything whatseover. You have been warned.Note that this includes NO GUARANTEE of MATHEMATICAL CORRECTNESS. If you are going to use this code in a production environment, it is YOUR RESPONSIBILITY to verify that the methods return the correct values. LICENSEYou may use this software under one of the following licenses:(1) GNU General Public License (found at http://www.gnu.org/copyleft/gpl.html) (2) Artistic License (found at http://www.perl.com/pub/language/misc/Artistic.html) BUGSThere are currently some problems with concurrent edge events on outward (and maybe inward) offsets. Some significant changes need to be made.METHODSThese methods are actually defined in Math::Geometry::Planar, which uses this module.offset_polygonReturns reference to an array of polygons representing the original polygon offsetted by $distance$polygon->offset_polygon($distance); FunctionsOnly OffsetPolygon is exported.piReturns the constant piOffsetPolygonMake offset polygon subroutine.Call with offset distance and ref to array of points for original polygon polygon input must be pre-wrapped so point[n]=point[0] Will return a list of polygons (as refs.) The number of polygons in the output depends on the shape of your input polygon. It may split into several pieces during the offset. my (@results) = OffsetPolygon(\@points, $distance); foreach my $polygon (@results) { # do something with @$polygon }
Visit the GSP FreeBSD Man Page Interface. |