diff options
author | vaxerski <[email protected]> | 2022-03-17 15:53:45 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-03-17 16:19:10 +0100 |
commit | cf51ab71a25cbb60ebcf13edd4b7413c23264128 (patch) | |
tree | 18b649470346c8815a156b5599ee7be1c4135a79 /src/helpers/Vector2D.hpp | |
parent | 52090853dafb75dd99969a0cecdd291c109210f8 (diff) | |
download | Hyprland-cf51ab71a25cbb60ebcf13edd4b7413c23264128.tar.gz Hyprland-cf51ab71a25cbb60ebcf13edd4b7413c23264128.zip |
input basics
Diffstat (limited to 'src/helpers/Vector2D.hpp')
-rw-r--r-- | src/helpers/Vector2D.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/helpers/Vector2D.hpp b/src/helpers/Vector2D.hpp index 9bc427e8..20bc032e 100644 --- a/src/helpers/Vector2D.hpp +++ b/src/helpers/Vector2D.hpp @@ -26,4 +26,15 @@ class Vector2D { Vector2D operator/(float a) { return Vector2D(this->x / a, this->y / a); } + + bool operator==(Vector2D& a) { + return a.x == x && a.y == y; + } + + bool operator!=(Vector2D& a) { + return a.x != x || a.y != y; + } + + + Vector2D floor(); };
\ No newline at end of file |