2014-12-17 11:08:14 +05:30
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 05:47:46 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 23:15:50 +05:30
|
|
|
#pragma once
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2014-08-19 03:35:07 +05:30
|
|
|
#include <algorithm>
|
2015-05-14 19:46:15 +05:30
|
|
|
#include <cstdlib>
|
2014-11-14 00:55:39 +05:30
|
|
|
#include <type_traits>
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
namespace MathUtil {
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2016-12-12 02:57:30 +05:30
|
|
|
static constexpr float PI = 3.14159265f;
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
inline bool IntervalsIntersect(unsigned start0, unsigned length0, unsigned start1,
|
|
|
|
unsigned length1) {
|
2015-05-30 07:24:53 +05:30
|
|
|
return (std::max(start0, start1) < std::min(start0 + length0, start1 + length1));
|
2015-05-19 09:51:33 +05:30
|
|
|
}
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
template <class T>
|
|
|
|
struct Rectangle {
|
2018-08-02 20:17:31 +05:30
|
|
|
T left{};
|
|
|
|
T top{};
|
|
|
|
T right{};
|
|
|
|
T bottom{};
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2017-11-14 11:00:11 +05:30
|
|
|
Rectangle() = default;
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
Rectangle(T left, T top, T right, T bottom)
|
2016-09-19 06:31:46 +05:30
|
|
|
: left(left), top(top), right(right), bottom(bottom) {}
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
T GetWidth() const {
|
|
|
|
return std::abs(static_cast<typename std::make_signed<T>::type>(right - left));
|
|
|
|
}
|
|
|
|
T GetHeight() const {
|
|
|
|
return std::abs(static_cast<typename std::make_signed<T>::type>(bottom - top));
|
|
|
|
}
|
2016-11-05 13:17:05 +05:30
|
|
|
Rectangle<T> TranslateX(const T x) const {
|
|
|
|
return Rectangle{left + x, top, right + x, bottom};
|
|
|
|
}
|
|
|
|
Rectangle<T> TranslateY(const T y) const {
|
|
|
|
return Rectangle{left, top + y, right, bottom + y};
|
|
|
|
}
|
|
|
|
Rectangle<T> Scale(const float s) const {
|
2016-11-10 13:06:07 +05:30
|
|
|
return Rectangle{left, top, static_cast<T>(left + GetWidth() * s),
|
|
|
|
static_cast<T>(top + GetHeight() * s)};
|
2016-11-05 13:17:05 +05:30
|
|
|
}
|
2013-09-05 05:47:46 +05:30
|
|
|
};
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
} // namespace MathUtil
|