mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 12:29:49 +01:00
Vaxry
ed411f53bd
This moves wlr_cursor to a completely new impl mostly under CPointerManager Also adds beginSimple to OpenGL for simple render passes (e.g. cursor)
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#include "Vector2D.hpp"
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
|
|
Vector2D::Vector2D(double xx, double yy) {
|
|
x = xx;
|
|
y = yy;
|
|
}
|
|
|
|
Vector2D::Vector2D() {
|
|
x = 0;
|
|
y = 0;
|
|
}
|
|
|
|
Vector2D::Vector2D(const Hyprlang::VEC2& ref) {
|
|
x = ref.x;
|
|
y = ref.y;
|
|
}
|
|
|
|
Vector2D::~Vector2D() {}
|
|
|
|
double Vector2D::normalize() {
|
|
// get max abs
|
|
const auto max = std::abs(x) > std::abs(y) ? std::abs(x) : std::abs(y);
|
|
|
|
x /= max;
|
|
y /= max;
|
|
|
|
return max;
|
|
}
|
|
|
|
Vector2D Vector2D::floor() const {
|
|
return Vector2D(std::floor(x), std::floor(y));
|
|
}
|
|
|
|
Vector2D Vector2D::round() const {
|
|
return Vector2D(std::round(x), std::round(y));
|
|
}
|
|
|
|
Vector2D Vector2D::clamp(const Vector2D& min, const Vector2D& max) const {
|
|
return Vector2D(std::clamp(this->x, min.x, max.x < min.x ? INFINITY : max.x), std::clamp(this->y, min.y, max.y < min.y ? INFINITY : max.y));
|
|
}
|
|
|
|
double Vector2D::distance(const Vector2D& other) const {
|
|
return std::sqrt(distanceSq(other));
|
|
}
|
|
|
|
double Vector2D::distanceSq(const Vector2D& other) const {
|
|
return (x - other.x) * (x - other.x) + (y - other.y) * (y - other.y);
|
|
}
|
|
|
|
double Vector2D::size() const {
|
|
return std::sqrt(x * x + y * y);
|
|
}
|
|
|
|
Vector2D Vector2D::getComponentMax(const Vector2D& other) const {
|
|
return Vector2D(std::max(this->x, other.x), std::max(this->y, other.y));
|
|
}
|