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::Circle - A Circle

Attributes

origin
       Set/Get the origin of this circle.

   radius
       Set/Get the radius of this circle.

Author

       Cory Watson <gphat@cpan.org>

Description

       Geometry::Primitive::Circle represents an ellipse with equal width and height.

Methods

new
       Creates a new Geometry::Primitive::Circle

   area
       Returns the area of this circle.

   circumference
       Returns the circumference of this circle.

   diameter
       Returns the diameter of this circle

   scale($amount)
       Returns a new circle whose radius is $amount times bigger than this one.

   point_end
       Set/Get the "end" point of this cicle.  Calls "point_start".

   point_start
       Set/Get the "start" point of this cicle.  Returns the point at the circle's origin X coordinate and the
       origin Y coordinate + radius / 2.

Name

       Geometry::Primitive::Circle - A Circle

Synopsis

         use Geometry::Primitive::Circle;

         my $circle = Geometry::Primitive::Circle->new(
             radius => 15
         );
         print $circle->diameter;

See Also