1234567891011 |
- #ifndef _MATHS_HEADER_
- #define _MATHS_HEADER_
- typedef struct Coords { int x; int y; } Coords;
- typedef Coords* coords;
- coords CreateCoords();
- int randint( int min, int max );
- int distance( coords u, coords v );
- int Intersects(coords a, coords b, coords u, coords v);
- #endif
|