8 #include <SFML/Graphics/Rect.hpp> 17 class Rect :
public sf::Rect<T> {
20 using sf::Rect<T>::Rect;
25 Rect(
const sf::Rect<S>& rect);
27 auto size()
const -> sf::Vector2<T> {
return sf::Vector2<T>(this->width, this->height); }
29 auto right()
const -> T {
return this->left + this->width; }
31 auto bottom()
const -> T {
return this->top + this->height; }
33 auto topleft()
const -> sf::Vector2<T> {
return sf::Vector2<T>(this->left, this->top); }
34 auto topright()
const -> sf::Vector2<T> {
return sf::Vector2<T>(right(), this->top); }
35 auto bottomleft()
const -> sf::Vector2<T> {
return sf::Vector2<T>(this->left, bottom()); }
36 auto bottomright()
const -> sf::Vector2<T> {
return sf::Vector2<T>(right(), bottom()); }
38 auto center()
const -> sf::Vector2f {
return sf::Vector2f((
float)this->width/2.f, (
float)this->height/2.f); }
43 auto operator=(
const sf::Rect<S>& other) ->
ns::Rect<T>&;
60 this->left = other.left;
61 this->top = other.top;
62 this->width = other.width;
63 this->height = other.height;
70 this->left =
static_cast<T
>(other.left);
71 this->top =
static_cast<T
>(other.top);
72 this->width =
static_cast<T
>(other.width);
73 this->height =
static_cast<T
>(other.height);
Extending sf::Rect with customized properties.