![]() |
![]()
| ![]() |
![]()
NAMEGeometry::Primitive::Ellipse - An Ellipse DESCRIPTIONGeometry::Primitive::Ellipse represents an elliptical conic section. SYNOPSISuse Geometry::Primitive::Ellipse; my $ellipse = Geometry::Primitive::Ellipse->new( width => 15, height => 10 ); print $ellipse->area; ATTRIBUTESheightSet/Get the height of this ellipse. originSet/Get the origin of this ellipse. widthSet/Get the width of this ellipse. METHODSnewCreates a new Geometry::Primitive::Ellipse areaReturns the area of this ellipse. point_endGets the "end" point for this Ellipse. Same as "point_start". point_startGet 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. AUTHORCory Watson <gphat@cpan.org> COPYRIGHT & LICENSEYou can redistribute and/or modify this code under the same terms as Perl itself.
|