NAME

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

VERSION

version 1.02

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.