cl_math.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 #include <cmath>
32 #include <cstdint>
33 #include "pi.h"
34 #include "vec4.h"
35 #include <memory>
36 
37 namespace uicore
38 {
39  template<typename T, typename ...Args>
40  std::unique_ptr<T> make_unique(Args&& ...args)
41  {
42  return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
43  }
44 
45  #undef pow2
46  #undef min
47  #undef max
48 
49  template<typename T>
50  inline T pow2(T value)
51  {
52  return value*value;
53  }
54 
55  template<typename A, typename B> inline A min(A a, B b) { return a < b ? a : b; }
56  template<typename A, typename B> inline A max(A a, B b) { return a > b ? a : b; }
57 
58  template<typename Type>
60  {
61  return Vec2<Type>(min(a.x, b.x), min(a.y, b.y));
62  }
63 
64  template<typename Type>
66  {
67  return Vec3<Type>(min(a.x, b.x), min(a.y, b.y), min(a.z, b.z));
68  }
69 
70  template<typename Type>
72  {
73  return Vec4<Type>(min(a.x, b.x), min(a.y, b.y), min(a.z, b.z), min(a.w, b.w));
74  }
75 
76  template<typename Type>
78  {
79  return Vec2<Type>(max(a.x, b.x), max(a.y, b.y));
80  }
81 
82  template<typename Type>
84  {
85  return Vec3<Type>(max(a.x, b.x), max(a.y, b.y), max(a.z, b.z));
86  }
87 
88  template<typename Type>
90  {
91  return Vec4<Type>(max(a.x, b.x), max(a.y, b.y), max(a.z, b.z), max(a.w, b.w));
92  }
93 
94  template<typename A, typename B, typename C>
95  inline C clamp(A val, B minval, C maxval)
96  {
97  return max((A)minval, min((A)maxval, val));
98  }
99 
100  template<typename A, typename B, typename C>
101  inline A mix(A a, B b, C mix)
102  {
103  return a * (C(1) - mix) + b * mix;
104  }
105 
106  inline int sign(int x)
107  {
108  if (x < 0)
109  return -1;
110  else if (x > 0)
111  return 1;
112  else
113  return 0;
114  }
115 
116  inline float sign(float x)
117  {
118  if (x < 0.0f)
119  return -1.0f;
120  else if (x > 0.0f)
121  return 1.0f;
122  else
123  return 0.0f;
124  }
125 
126  inline double sign(double x)
127  {
128  if (x < 0.0)
129  return -1.0;
130  else if (x > 0.0)
131  return 1.0;
132  else
133  return 0.0;
134  }
135 
136  template<typename Type>
137  inline Vec2<Type> sign(const Vec2<Type> &x)
138  {
139  return Vec2<Type>(sign(x.x), sign(x.y));
140  }
141 
142  template<typename Type>
143  inline Vec3<Type> sign(const Vec3<Type> &x)
144  {
145  return Vec3<Type>(sign(x.x), sign(x.y), sign(x.z));
146  }
147 
148  template<typename Type>
149  inline Vec4<Type> sign(const Vec4<Type> &x)
150  {
151  return Vec4<Type>(sign(x.x), sign(x.y), sign(x.z), sign(x.w));
152  }
153 
154  template<typename A, typename B, typename C> inline C smoothstep(A edge0, B edge1, C x)
155  {
156  C t = clamp((x - edge0) / (edge1 - edge0), C(0), C(1));
157  return t * t * (C(3) - C(2) * t);
158  }
159 
160  inline int step(int edge, int x)
161  {
162  return x < edge ? 0 : 1;
163  }
164 
165  inline long long step(long long edge, long long x)
166  {
167  return x < edge ? 0 : 1;
168  }
169 
170  inline float step(float edge, float x)
171  {
172  return x < edge ? 0.0f : 1.0f;
173  }
174 
175  inline double step(double edge, double x)
176  {
177  return x < edge ? 0.0 : 1.0;
178  }
179 
180  template<typename Type>
181  inline Vec2<Type> step(const Vec2<Type> &edge, const Vec2<Type> &x)
182  {
183  return Vec2<Type>(step(edge.x, x.x), step(edge.y, x.y));
184  }
185 
186  template<typename Type>
187  inline Vec3<Type> step(const Vec3<Type> &edge, const Vec3<Type> &x)
188  {
189  return Vec3<Type>(step(edge.x, x.x), step(edge.y, x.y), step(edge.z, x.z));
190  }
191 
192  template<typename Type>
193  inline Vec4<Type> step(const Vec4<Type> &edge, const Vec4<Type> &x)
194  {
195  return Vec4<Type>(step(edge.x, x.x), step(edge.y, x.y), step(edge.z, x.z), step(edge.w, x.w));
196  }
197 }
std::unique_ptr< T > make_unique(Args &&...args)
Definition: cl_math.h:40
A min(A a, B b)
Definition: cl_math.h:55
T pow2(T value)
Definition: cl_math.h:50
2D vector
Definition: line.h:43
Type x
Definition: vec3.h:74
3D vector
Definition: line_ray.h:43
Type x
Definition: vec4.h:74
Type x
Definition: vec2.h:75
C smoothstep(A edge0, B edge1, C x)
Definition: cl_math.h:154
int step(int edge, int x)
Definition: cl_math.h:160
Type z
Definition: vec3.h:76
Type y
Definition: vec2.h:76
C clamp(A val, B minval, C maxval)
Definition: cl_math.h:95
Type y
Definition: vec4.h:75
Type w
Definition: vec4.h:77
A max(A a, B b)
Definition: cl_math.h:56
Type y
Definition: vec3.h:75
int sign(int x)
Definition: cl_math.h:106
Type z
Definition: vec4.h:76
A mix(A a, B b, C mix)
Definition: cl_math.h:101
Definition: Application/application.h:35
4D vector
Definition: size.h:44