Rect#
Functions
-
sfBool sfFloatRect_contains(const sfFloatRect *rect, float x, float y)#
Check if a point is inside a rectangle’s area.
- Parameters:
rect – Rectangle to test
x – X coordinate of the point to test
y – Y coordinate of the point to test
- Returns:
sfTrue if the point is inside
-
sfBool sfFloatRect_intersects(const sfFloatRect *rect1, const sfFloatRect *rect2, sfFloatRect *intersection)#
Check intersection between two rectangles.
- Parameters:
rect1 – First rectangle to test
rect2 – Second rectangle to test
intersection – Rectangle to be filled with overlapping rect (can be NULL)
- Returns:
sfTrue if rectangles overlap
-
struct sfFloatRect#
- #include <Rect.h>
sfFloatRect and sfIntRect are utility classes for manipulating rectangles.
-
struct sfIntRect#