1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00
VVVVVV/desktop_version/src/Maths.h
2020-11-17 12:17:04 -05:00

29 lines
409 B
C

#ifndef MATHGAME_H
#define MATHGAME_H
#include <math.h>
#include <stdlib.h>
//// This header holds Maths functions that emulate the functionality of flash's
//random
//Returns 0..1
float inline fRandom()
{
return ( float(rand()) / float(RAND_MAX)) ;
}
inline int clamp(int x, int a, int b)
{
return x < a ? a : (x > b ? b : x);
}
struct point
{
int x;
int y;
};
#endif /* MATHGAME_H */