class Circle : public Shape
Description
Represents a circle with a given radius.
Defined on line 13 at Circle.h
Public Methods
virtual double area() override const
brief
Calculates the area of the circle.
return
double The area of the circle.
Defined on line 5 at Circle.cpp
virtual double perimeter() override const
brief
Calculates the perimeter of the circle.
return
double The perimeter of the circle.
Defined on line 9 at Circle.cpp
Circle class derived from Shape.