summaryrefslogtreecommitdiff
path: root/dat.h
blob: 24799b8bba68d35fe1c7976b2c9cd6c2365415cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#define Eg	9.81
#define PIX2M	0.001
#define M2PIX	(1.0/PIX2M)

enum {
	Stheta = 0,
	Spos,
	Svel,
	Sdeltax,
	Seta,
	SLEN,
};

typedef struct Projectile Projectile;

struct Projectile
{
	Point2 p, v;
	double mass;
};