logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Geometry::Primitive::Ellipse - An Ellipse

Attributes

height
       Set/Get the height of this ellipse.

   origin
       Set/Get the origin of this ellipse.

   width
       Set/Get the width of this ellipse.

Author

       Cory Watson <gphat@cpan.org>

Description

       Geometry::Primitive::Ellipse represents an elliptical conic section.

Methods

new
       Creates a new Geometry::Primitive::Ellipse

   area
       Returns the area 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.

Name

       Geometry::Primitive::Ellipse - An Ellipse

Synopsis

         use Geometry::Primitive::Ellipse;

         my $ellipse = Geometry::Primitive::Ellipse->new(
             width => 15,
             height => 10
         );
         print $ellipse->area;

See Also