class Circle : public Shape
                    
                

Description

brief

Circle class derived from Shape.

Represents a circle with a given radius.

Defined on line 13 at Circle.h

Public Methods

            
void Circle(double radius)
            
        

brief

Constructs a new Circle object.

Defined on line 3 at Circle.cpp
            
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
            
template <typename T> void bar(Shape & s, T value = T(), const char * name = "default")
            
        

brief

bar stuff

Defined on line 40 at Circle.h
            
void foo(Test t)
            
        
Defined on line 43 at Circle.h