2022-03-30 21:35:23 +00:00
|
|
|
#ifndef LIBFLINT_H_UTILITY
|
|
|
|
#define LIBFLINT_H_UTILITY
|
|
|
|
|
2022-03-30 23:36:00 +00:00
|
|
|
/**
|
|
|
|
* \struct Point
|
|
|
|
* \brief Representation of a point on a two dimensional grid
|
|
|
|
* \var int x
|
|
|
|
* x point on the 2d grid
|
|
|
|
* \var int y
|
|
|
|
* y point on the 2d grid
|
|
|
|
*/
|
2022-03-30 21:35:23 +00:00
|
|
|
typedef struct Point {
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
} Point;
|
|
|
|
|
|
|
|
#endif // LIBFLINT_H_UTILITY
|