pandemonium_engine_minimal/core/math/rect2i.cpp

11 lines
269 B
C++
Raw Normal View History

2023-12-14 21:54:22 +01:00
/* rect2.cpp */
2023-12-14 21:54:22 +01:00
#include "core/math/transform_2d.h" // Includes rect2.h but Rect2 needs Transform2D
Rect2i::operator String() const {
return "[P: " + position.operator String() + ", S: " + size + "]";
}