mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
09d3e1b59f
Yay.
28 lines
574 B
C
28 lines
574 B
C
#ifndef __qwaq_rect_h
|
|
#define __qwaq_rect_h
|
|
|
|
typedef struct Point_s {
|
|
int x;
|
|
int y;
|
|
} Point;
|
|
|
|
typedef struct Extent_s {
|
|
int width;
|
|
int height;
|
|
} Extent;
|
|
|
|
typedef struct Rect_s {
|
|
Point offset;
|
|
Extent extent;
|
|
} Rect;
|
|
|
|
#ifdef __QFCC__
|
|
Rect makeRect (int xpos, int ypos, int xlen, int ylen);
|
|
Point makePoint (int x, int y);
|
|
Extent makeExtent (int width, int height);
|
|
Extent mergeExtents (Extent a, Extent b);
|
|
int rectContainsPoint (Rect rect, Point point);
|
|
Rect clipRect (Rect clipRect, Rect rect);
|
|
#endif
|
|
|
|
#endif//__qwaq_rect_h
|