mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-03-07 16:56:59 +01:00
Added SDL_PointInRect().
This commit is contained in:
parent
ded970f70f
commit
b7f90442df
@ -43,6 +43,7 @@ extern "C" {
|
|||||||
* \brief The structure that defines a point
|
* \brief The structure that defines a point
|
||||||
*
|
*
|
||||||
* \sa SDL_EnclosePoints
|
* \sa SDL_EnclosePoints
|
||||||
|
* \sa SDL_PointInRect
|
||||||
*/
|
*/
|
||||||
typedef struct SDL_Point
|
typedef struct SDL_Point
|
||||||
{
|
{
|
||||||
@ -66,6 +67,15 @@ typedef struct SDL_Rect
|
|||||||
int w, h;
|
int w, h;
|
||||||
} SDL_Rect;
|
} SDL_Rect;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Returns true if point resides inside a rectangle.
|
||||||
|
*/
|
||||||
|
SDL_FORCE_INLINE SDL_bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r)
|
||||||
|
{
|
||||||
|
return ( (p->x >= r->x) && (p->x < (r->x + r->w)) &&
|
||||||
|
(p->y >= r->y) && (p->y < (r->y + r->h)) );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Returns true if the rectangle has no area.
|
* \brief Returns true if the rectangle has no area.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user