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

NAME

SVG::Estimate::Ellipse - Handles estimating ellipses.

VERSION

version 1.0114

SYNOPSIS

 my $ellipse = SVG::Estimate::Ellipse->new(
    transformer => $transform,
    start_point => [45,13],
    cx          => 1,
    cy          => 3,
    rx          => 1,
    ry          => 1.5,
 );

 my $length = $ellipse->length;

INHERITANCE

This class extends SVG::Estimate::Shape.

METHODS

new()

Constructor.

cx

Float representing center x.

cy

Float representing center y.

rx

Float representing the x radius.

ry

Float representing the y radius.