blob: 590ead0aa4e0da2d129aebcdeb11f7ad1fe621e8 (
plain)
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
33
|
#include "../copyright"
#ifndef _C4_H_
#define _C4_H_
#include "port.h"
extern int16_t C4WFXVal;
extern int16_t C4WFYVal;
extern int16_t C4WFZVal;
extern int16_t C4WFX2Val;
extern int16_t C4WFY2Val;
extern int16_t C4WFDist;
extern int16_t C4WFScale;
void C4TransfWireFrame();
void C4TransfWireFrame2();
void C4CalcWireFrame();
extern int16_t C41FXVal;
extern int16_t C41FYVal;
extern int16_t C41FAngleRes;
extern int16_t C41FDist;
extern int16_t C41FDistVal;
void C4Op1F();
void C4Op15();
void C4Op0D();
extern int16_t C4CosTable[];
extern int16_t C4SinTable[];
#endif
|