The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SVG::Estimate::Polygon - Handles estimating shapes of more than 3 points with straight lines between the points.

VERSION

version 1.0116

SYNOPSIS

 my $polygon = SVG::Estimate::Polygon->new(
    transformer => $transform,
    start_point => [45,13],
    points      => '20,20 40,25 60,40 80,120 120,140 200,180',
 );

 my $length = $polygon->length;

INHERITANCE

This class extends SVG::Estimate::Polyline.