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

NAME

SVG::Estimate::Path - Handles estimating arbitrary vectors.

VERSION

version 1.0116

SYNOPSIS

 my $path = SVG::Estimate::Path->new(
    transformer => $transform,
    start_point => [45,13],
    d           => 'M150 0 L75 200 L225 200 Z',
 );

 my $length = $path->length;

INHERITANCE

This class extends SVG::Estimate::Shape.

METHODS

new()

Constructor.

d

An SVG path string as described http://www.w3.org/TR/SVG/paths.html.