warzone2100/lib/betawidget/geom.h

64 lines
803 B
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;
};
/*
* 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);
#endif /*GEOM_H_*/