Thu, 13 Feb 2020 15:25:01 +0200
made the grid look nicer
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
20 | 19 | #pragma once |
20 | #include <cmath> | |
33
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
21 | #include "utility.h" |
20 | 22 | |
23 | namespace math | |
24 | { | |
25 | using std::abs; | |
26 | using std::sqrt; | |
27 | using std::sin; | |
28 | using std::cos; | |
29 | using std::tan; | |
30 | using std::atan; | |
31 | using std::atan2; | |
32 | using std::acos; | |
33 | using std::asin; | |
34 | using std::exp; | |
35 | using std::log; | |
36 | using std::log10; | |
37 | using std::hypot; | |
38 | using std::floor; | |
39 | using std::ceil; | |
40 | using std::trunc; | |
41 | using std::round; | |
42 | template<typename T, typename... Rest> | |
43 | inline auto hypot(T&& x, Rest&&... rest) | |
44 | { | |
45 | return math::hypot(x, math::hypot(rest...)); | |
46 | } | |
47 | template<typename T, typename... Rest> | |
48 | const T& max(const T& x, const T& y) | |
49 | { | |
50 | if (x > y) | |
51 | return x; | |
52 | else | |
53 | return y; | |
54 | } | |
55 | template<typename T, typename... Rest> | |
56 | const T& max(const T& x, const T& y, Rest&&... rest) | |
57 | { | |
58 | return math::max(x, math::max(y, rest...)); | |
59 | } | |
60 | template<typename T, typename... Rest> | |
61 | const T& min(const T& x, const T& y) | |
62 | { | |
63 | if (x < y) | |
64 | return x; | |
65 | else | |
66 | return y; | |
67 | } | |
68 | template<typename T, typename... Rest> | |
69 | const T& min(const T& x, const T& y, Rest&&... rest) | |
70 | { | |
71 | return math::min(x, math::min(y, rest...)); | |
72 | } | |
73 | constexpr double infinity = std::numeric_limits<double>::infinity(); | |
74 | constexpr long double pi = M_PIl; | |
26 | 75 | |
76 | /* | |
77 | * Returns the empty sum. (recursion base) | |
78 | */ | |
79 | template<typename T> | |
80 | constexpr T sum() | |
81 | { | |
82 | return {}; | |
83 | } | |
84 | ||
85 | /* | |
86 | * Returns the sum of n arguments. | |
87 | */ | |
88 | template<typename T, typename... Rest> | |
89 | constexpr auto sum(const T& arg, Rest&&... rest) | |
90 | { | |
91 | return arg + sum<T>(rest...); | |
92 | } | |
20 | 93 | } |
33
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
94 | |
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
95 | inline unsigned int qHash(const glm::vec3& key) |
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
96 | { |
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
97 | return qHash(key.x) ^ utility::rotl10(qHash(key.y)) ^ utility::rotl20(qHash(key.z)); |
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
98 | } |