-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.h
32 lines (24 loc) · 877 Bytes
/
tables.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __TABLES__
#define __TABLES__
#include "m_fixed.h"
#define FINEANGLES 8192
#define FINEMASK (FINEANGLES - 1)
#define ANGLETOFINESHIFT 19
#define ANG45 0x20000000
#define ANG90 0x40000000
#define ANG180 0x80000000
#define ANG270 0xc0000000
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#define SLOPERANGE 2048
#define SLOPEBITS 11
#define DBITS (FRACBITS - SLOPEBITS)
typedef unsigned angle_t;
extern const int *finesine;
extern const int *finecosine;
extern const int *finetangent;
extern const angle_t *tantoangle;
void R_LoadTrigTables(void);
int SlopeDiv(unsigned num, unsigned den);
#endif