78 lines
1.0 KiB
C
78 lines
1.0 KiB
C
#ifndef GEOM_H_
|
|
#define GEOM_H_
|
|
|
|
// TODO: Make this cross platform (MSVC)
|
|
#include <stdbool.h>
|
|
|
|
/*
|
|
* A point
|
|
*/
|
|
typedef struct _point point;
|
|
typedef point size;
|
|
|
|
struct _point
|
|
{
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
/*
|
|
* A rectangle
|
|
*/
|
|
typedef struct _rect rect;
|
|
|
|
struct _rect
|
|
{
|
|
point topLeft;
|
|
point bottomRight;
|
|
};
|
|
|
|
/*
|
|
* Helper macros
|
|
*/
|
|
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
|
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
/*
|
|
* Method signatures
|
|
*/
|
|
|
|
/**
|
|
* Creates a rect from an absolute point and a size.
|
|
*
|
|
* @param p
|
|
* @param s
|
|
* @return A rect.
|
|
*/
|
|
rect rectFromPointAndSize(point p, size s);
|
|
|
|
/**
|
|
* Checks to see if the point p is inside of the rectangle r.
|
|
*
|
|
* @param p
|
|
* @param r
|
|
* @return If the point is in the rectangle.
|
|
*/
|
|
bool pointInRect(point p, rect r);
|
|
|
|
/**
|
|
* Adds point p to point q.
|
|
*
|
|
* @param p
|
|
* @param q
|
|
* @return p + q.
|
|
*/
|
|
point pointAdd(point p, point q);
|
|
|
|
/**
|
|
* Subtracts point q from point p.
|
|
*
|
|
* @param p
|
|
* @param q
|
|
* @return p - q.
|
|
*/
|
|
point pointSub(point p, point q);
|
|
|
|
|
|
#endif /*GEOM_H_*/
|