NAME
Geometry::Primitive::Ellipse - An Ellipse
DESCRIPTION
Geometry::Primitive::Ellipse represents an elliptical conic section.
SYNOPSIS
use Geometry::Primitive::Ellipse;
my $ellipse = Geometry::Primitive::Ellipse->new(
width => 15,
height => 10
);
print $ellipse->area;
METHODS
Constructor
- new
-
Creates a new Geometry::Primitive::Ellipse
Instance Methods
- area
-
Returns the area of this ellipse.
- height
-
Set/Get the height of this ellipse.
- origin
-
Set/Get the origin of this ellipse.
- point_end
-
Gets the "end" point for this Ellipse. Same as
point_start
. - point_start
-
Get the point that "starts" this Ellipse. Returns the a point where the X coordinate is the Ellipse origin X and the origin Y + height / 2.
- scale ($amount)
-
Returns a new ellipse whose radius is $amount times bigger than this one.
- width
-
Set/Get the width of this ellipse.
AUTHOR
Cory Watson <gphat@cpan.org>
Infinity Interactive, http://www.iinteractive.com
COPYRIGHT & LICENSE
Copyright 2008 by Infinity Interactive, Inc.
You can redistribute and/or modify this code under the same terms as Perl itself.