blob: 9c937d819e882d28774c0edca12742daefb7c9c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _DISC_H
#define _DISC_H
#include <math.h>
#ifndef M_PI
#define M_PI 3.14159
#endif
class disc {
public:
static void draw(double x, double y, double radius);
};
#endif
|