-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.hpp
49 lines (42 loc) · 1.16 KB
/
utils.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
struct string_hash
{
using is_transparent = void; // enables heterogenous lookup
std::size_t operator()(const char* char_string) const
{
std::hash<std::string_view> hasher;
return hasher(char_string);
}
std::size_t operator()(std::string_view string_view) const
{
std::hash<std::string_view> hasher;
return hasher(string_view);
}
};
// geometry utils
template <typename T>
bool is_in_range(T rb, T re, T v)
{
return v >= rb && v <= re;
}
template <typename T>
bool rect_contains(glm::vec<2, T, glm::defaultp> top_left,
glm::vec<2, T, glm::defaultp> bottom_right,
glm::vec<2, T, glm::defaultp> pos)
{
glm::vec<2, T, glm::defaultp> tl = top_left;
glm::vec<2, T, glm::defaultp> br = bottom_right;
if (top_left.x > bottom_right.x)
{
tl.x = bottom_right.x;
br.x = top_left.x;
}
if (top_left.y > bottom_right.y)
{
tl.y = bottom_right.y;
br.y = top_left.y;
}
return is_in_range(tl.x, br.x, pos.x) && is_in_range(tl.y, br.y, pos.y);
}
template <typename R, typename... ARGS>
R gl_convert(ARGS&&... args);