mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Hello WWWWWWorld!
This commit is contained in:
28
desktop_version/src/Maths.h
Normal file
28
desktop_version/src/Maths.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef MATHGAME_H
|
||||
#define MATHGAME_H
|
||||
|
||||
#include <cmath>
|
||||
#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 */
|
||||
Reference in New Issue
Block a user