Loading...
Searching...
No Matches
Rect.h
Go to the documentation of this file.
1
2//
3// SFML - Simple and Fast Multimedia Library
4// Copyright (C) 2007-2024 Laurent Gomila (laurent@sfml-dev.org)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef SFML_RECT_H
26#define SFML_RECT_H
27
29// Headers
32
33#include <SFML/System/Vector2.h>
34
35
40typedef struct
41{
42 float left;
43 float top;
44 float width;
45 float height;
47
48typedef struct
49{
50 int left;
51 int top;
52 int width;
53 int height;
54} sfIntRect;
55
68
81
92
103
104
105#endif // SFML_RECT_H
int sfBool
Definition Config.h:153
#define CSFML_GRAPHICS_API
sfVector2i sfIntRect_getSize(const sfIntRect *rect)
sfBool sfIntRect_intersects(const sfIntRect *rect1, const sfIntRect *rect2, sfIntRect *intersection)
sfBool sfIntRect_contains(const sfIntRect *rect, int x, int y)
sfBool sfFloatRect_contains(const sfFloatRect *rect, float x, float y)
Check if a point is inside a rectangle's area.
sfVector2f sfFloatRect_getSize(const sfFloatRect *rect)
Get the size of the rectangle.
sfVector2i sfIntRect_getPosition(const sfIntRect *rect)
sfVector2f sfFloatRect_getPosition(const sfFloatRect *rect)
Get the position of the rectangle's top-left corner.
sfBool sfFloatRect_intersects(const sfFloatRect *rect1, const sfFloatRect *rect2, sfFloatRect *intersection)
Check intersection between two rectangles.
sfFloatRect and sfIntRect are utility classes for manipulating rectangles.
Definition Rect.h:41
float width
Definition Rect.h:44
float top
Definition Rect.h:43
float height
Definition Rect.h:45
float left
Definition Rect.h:42
int width
Definition Rect.h:52
int top
Definition Rect.h:51
int height
Definition Rect.h:53
int left
Definition Rect.h:50
2-component vector of floats
Definition Vector2.h:61
2-component vector of integers
Definition Vector2.h:39