You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
450 B
34 lines
450 B
16 years ago
|
/* File : example.c */
|
||
|
|
||
|
#include "example.h"
|
||
|
#define M_PI 3.14159265358979323846
|
||
|
|
||
|
/* Move the shape to a new location */
|
||
9 years ago
|
void Shape::move(double dx, double dy)
|
||
|
{
|
||
16 years ago
|
x += dx;
|
||
|
y += dy;
|
||
|
}
|
||
|
|
||
|
int Shape::nshapes = 0;
|
||
|
|
||
9 years ago
|
double Circle::area(void)
|
||
|
{
|
||
|
return M_PI * radius * radius;
|
||
16 years ago
|
}
|
||
|
|
||
9 years ago
|
double Circle::perimeter(void)
|
||
|
{
|
||
|
return 2 * M_PI * radius;
|
||
16 years ago
|
}
|
||
|
|
||
9 years ago
|
double Square::area(void)
|
||
|
{
|
||
|
return width * width;
|
||
16 years ago
|
}
|
||
|
|
||
9 years ago
|
double Square::perimeter(void)
|
||
|
{
|
||
|
return 4 * width;
|
||
16 years ago
|
}
|