CAutomobile::ProcessControl done

This commit is contained in:
aap 2019-07-18 15:41:09 +02:00
parent 82be466013
commit fd01f9b25c
12 changed files with 239 additions and 11 deletions

View file

@ -139,7 +139,8 @@ inline float sq(float x) { return x*x; }
#define SQR(x) ((x) * (x))
#define PI M_PI
#define TWOPI PI*2
#define TWOPI (PI*2)
#define HALFPI (PI/2)
#define DEGTORAD(x) ((x) * PI / 180.0f)
#define RADTODEG(x) ((x) * 180.0f / PI)