rcpp_framework/core/math/rect2.cpp

208 lines
3.1 KiB
C++
Raw Normal View History

#include "rect2.h"
#include "math.h"
float Rect2::get_area() const {
return w * h;
}
bool Rect2::intersects(const Rect2 &b) const {
if (x >= (b.x + b.w))
return false;
if ((x + w) <= b.x)
return false;
if (y >= (b.y + b.h))
return false;
if ((y + h) <= b.y)
return false;
return true;
}
bool Rect2::intersects_include_borders(const Rect2 &b) const {
if (x > (b.x + b.w))
return false;
if ((x + w) < b.x)
return false;
if (y > (b.y + b.h))
return false;
if ((y + h) < b.y)
return false;
return true;
}
bool Rect2::encloses(const Rect2 &b) const {
return (b.x >= x) && (b.y >= y) &&
((b.x + b.w) <= (x + w)) &&
((b.y + b.h) <= (y + h));
}
bool Rect2::has_no_area() const {
if (w == 0 && h == 0) {
return true;
}
return false;
}
bool Rect2::has_point(const float px, const float py) const {
if (px > x && px < x + w && py > y && py < py + h) {
return true;
}
return false;
}
bool Rect2::is_equal_approx(const Rect2 &b) const {
if (x + EPSILON < b.x && x - EPSILON > b.x && y + EPSILON < b.y && y - EPSILON > b.y &&
w + EPSILON < b.w && w - EPSILON > b.w && h + EPSILON < b.h && h - EPSILON > b.h) {
return true;
}
return false;
}
void Rect2::grow(const float by) {
x -= by;
y -= by;
h += by;
w += by;
}
void Rect2::shrink(const float by) {
x += by;
y += by;
h -= by;
w -= by;
}
2021-11-16 03:06:58 +01:00
//Taken from the Godot Engine (MIT License)
//Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.
//Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).
void Rect2::expand_to(const Vector2 &p_vector) {
Vector2 begin = Vector2(x, y);
Vector2 end = Vector2(x, y) + Vector2(w, h);
if (p_vector.x < begin.x) {
begin.x = p_vector.x;
}
if (p_vector.y < begin.y) {
begin.y = p_vector.y;
}
if (p_vector.x > end.x) {
end.x = p_vector.x;
}
if (p_vector.y > end.y) {
end.y = p_vector.y;
}
x = begin.x;
y = begin.y;
w = end.x - begin.x;
h = end.y - begin.y;
}
#ifdef SDL_AVAILABLE
SDL_Rect Rect2::as_rect() const {
SDL_Rect r;
r.x = x;
r.y = y;
r.w = w;
r.h = h;
return r;
}
SDL_FRect Rect2::as_frect() const {
SDL_FRect r;
r.x = x;
r.y = y;
r.w = w;
r.h = h;
return r;
}
#endif
Rect2 &Rect2::operator+=(const Rect2 &b) {
2021-11-16 03:06:58 +01:00
x += b.x;
y += b.y;
w += b.w;
h += b.h;
2021-11-16 03:06:58 +01:00
return *this;
}
Rect2 &Rect2::operator-=(const Rect2 &b) {
2021-11-16 03:06:58 +01:00
x -= b.x;
y -= b.y;
w -= b.w;
h -= b.h;
2021-11-16 03:06:58 +01:00
return *this;
}
Rect2 operator+(Rect2 lhs, const Rect2 &rhs) {
2021-11-16 03:06:58 +01:00
lhs.x += rhs.x;
lhs.y += rhs.y;
lhs.w += rhs.w;
lhs.h += rhs.h;
2021-11-16 03:06:58 +01:00
return lhs;
}
Rect2 operator-(Rect2 lhs, const Rect2 &rhs) {
2021-11-16 03:06:58 +01:00
lhs.x -= rhs.x;
lhs.y -= rhs.y;
lhs.w -= rhs.w;
lhs.h -= rhs.h;
2021-11-16 03:06:58 +01:00
return lhs;
}
bool operator==(const Rect2 &a, const Rect2 &b) {
2021-11-16 03:06:58 +01:00
return a.is_equal_approx(b);
}
bool operator!=(const Rect2 &a, const Rect2 &b) {
2021-11-16 03:06:58 +01:00
return !a.is_equal_approx(b);
}
Rect2::Rect2() {
x = 0;
y = 0;
w = 0;
h = 0;
}
Rect2::Rect2(const Rect2 &b) {
x = b.x;
y = b.y;
w = b.w;
h = b.h;
}
Rect2::Rect2(const float rx, const float ry) {
x = rx;
y = ry;
w = 0;
h = 0;
}
Rect2::Rect2(const float rx, const float ry, const float rw, const float rh) {
x = rx;
y = ry;
w = rw;
h = rh;
}