mirror of
https://github.com/hyprwm/hyprutils.git
synced 2024-11-17 04:55:59 +01:00
7a2c2c96ec
* Added some constants to handle floating point presicion comparisons and other calculations plus some refactoring * Removed validation * Added comments to understand how box header works * Extended the EXPECT macro to evaluate Vector2D test cases * Added box.cpp test cases * Applied clang-format
89 lines
No EOL
2.4 KiB
C++
89 lines
No EOL
2.4 KiB
C++
#include <hyprutils/math/Region.hpp>
|
|
#include "shared.hpp"
|
|
|
|
using namespace Hyprutils::Math;
|
|
|
|
int main(int argc, char** argv, char** envp) {
|
|
CRegion rg = {0, 0, 100, 100};
|
|
rg.add(CBox{{}, {20, 200}});
|
|
|
|
int ret = 0;
|
|
|
|
EXPECT(rg.getExtents().height, 200);
|
|
EXPECT(rg.getExtents().width, 100);
|
|
|
|
rg.intersect(CBox{10, 10, 300, 300});
|
|
|
|
EXPECT(rg.getExtents().width, 90);
|
|
EXPECT(rg.getExtents().height, 190);
|
|
|
|
/*Box.cpp test cases*/
|
|
// Test default constructor and accessors
|
|
{
|
|
CBox box1;
|
|
EXPECT(box1.x, 0);
|
|
EXPECT(box1.y, 0);
|
|
EXPECT(box1.width, 0);
|
|
EXPECT(box1.height, 0);
|
|
|
|
// Test parameterized constructor and accessors
|
|
CBox box2(10, 20, 30, 40);
|
|
EXPECT(box2.x, 10);
|
|
EXPECT(box2.y, 20);
|
|
EXPECT(box2.width, 30);
|
|
EXPECT(box2.height, 40);
|
|
|
|
// Test setters and getters
|
|
box2.translate(Vector2D(5, -5));
|
|
EXPECT_VECTOR2D(box2.pos(), Vector2D(15, 15));
|
|
}
|
|
|
|
//Test Scaling and Transformation
|
|
{
|
|
CBox box(10, 10, 20, 30);
|
|
|
|
// Test scaling
|
|
box.scale(2.0);
|
|
EXPECT_VECTOR2D(box.size(), Vector2D(40, 60));
|
|
EXPECT_VECTOR2D(box.pos(), Vector2D(20, 20));
|
|
|
|
// Test scaling from center
|
|
box.scaleFromCenter(0.5);
|
|
EXPECT_VECTOR2D(box.size(), Vector2D(20, 30));
|
|
EXPECT_VECTOR2D(box.pos(), Vector2D(30, 35));
|
|
|
|
// Test transformation
|
|
box.transform(HYPRUTILS_TRANSFORM_90, 100, 200);
|
|
EXPECT_VECTOR2D(box.pos(), Vector2D(135, 30));
|
|
EXPECT_VECTOR2D(box.size(), Vector2D(30, 20));
|
|
|
|
// Test Intersection and Extents
|
|
}
|
|
|
|
{
|
|
CBox box1(0, 0, 100, 100);
|
|
CBox box2(50, 50, 100, 100);
|
|
|
|
CBox intersection = box1.intersection(box2);
|
|
EXPECT_VECTOR2D(intersection.pos(), Vector2D(50, 50));
|
|
EXPECT_VECTOR2D(intersection.size(), Vector2D(50, 50));
|
|
|
|
SBoxExtents extents = box1.extentsFrom(box2);
|
|
EXPECT_VECTOR2D(extents.topLeft, Vector2D(50, 50));
|
|
EXPECT_VECTOR2D(extents.bottomRight, Vector2D(-50, -50));
|
|
}
|
|
|
|
// Test Boundary Conditions and Special Cases
|
|
{
|
|
CBox box(0, 0, 50, 50);
|
|
|
|
EXPECT(box.empty(), false);
|
|
|
|
EXPECT(box.containsPoint(Vector2D(25, 25)), true);
|
|
EXPECT(box.containsPoint(Vector2D(60, 60)), false);
|
|
EXPECT(box.overlaps(CBox(25, 25, 50, 50)), true);
|
|
EXPECT(box.inside(CBox(0, 0, 100, 100)), false);
|
|
}
|
|
|
|
return ret;
|
|
} |