WaterLevel done

This commit is contained in:
Fire-Head
2019-07-11 03:22:01 +03:00
parent 53023eb65b
commit aed8218ef1
8 changed files with 1464 additions and 12 deletions

View File

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