angle.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 <memory>
32 #include "pi.h"
33 #include "vec2.h"
34 #include "vec3.h"
35 #include "vec4.h"
36 
37 namespace uicore
38 {
40  enum class EulerOrder
41  {
42  xyz,
43  xzy,
44  yzx,
45  yxz,
46  zxy,
47  zyx
48  };
49 
51  inline float degrees(float radians) { return radians * 180.0f * (float)(1.0 / PI); }
52  inline double degrees(double radians) { return radians * 180.0 * (1.0 / PI_D); }
53  template<typename T> Vec2<T> degrees(const Vec2<T> &radians) { return Vec2<T>(degrees(radians.x), degrees(radians.y)); }
54  template<typename T> Vec3<T> degrees(const Vec3<T> &radians) { return Vec3<T>(degrees(radians.x), degrees(radians.y), degrees(radians.z)); }
55  template<typename T> Vec4<T> degrees(const Vec4<T> &radians) { return Vec4<T>(degrees(radians.x), degrees(radians.y), degrees(radians.z), degrees(radians.w)); }
56 
58  inline float radians(float degrees) { return degrees * PI * (float)(1.0 / 180.0); }
59  inline double radians(double degrees) { return degrees * PI_D * (1.0 / 180.0); }
60  template<typename T> Vec2<T> radians(const Vec2<T> &degrees) { return Vec2<T>(radians(degrees.x), radians(degrees.y)); }
61  template<typename T> Vec3<T> radians(const Vec3<T> &degrees) { return Vec3<T>(radians(degrees.x), radians(degrees.y), radians(degrees.z)); }
62  template<typename T> Vec4<T> radians(const Vec4<T> &degrees) { return Vec4<T>(radians(degrees.x), radians(degrees.y), radians(degrees.z), radians(degrees.w)); }
63 
65  float normalize_360(float degrees);
66  double normalize_360(double degrees);
67  template<typename T> Vec2<T> normalize_360(const Vec2<T> &degrees) { return Vec2<T>(normalize_360(degrees.x), normalize_360(degrees.y)); }
68  template<typename T> Vec3<T> normalize_360(const Vec3<T> &degrees) { return Vec3<T>(normalize_360(degrees.x), normalize_360(degrees.y), normalize_360(degrees.z)); }
69  template<typename T> Vec4<T> normalize_360(const Vec4<T> &degrees) { return Vec4<T>(normalize_360(degrees.x), normalize_360(degrees.y), normalize_360(degrees.z), normalize_360(degrees.w)); }
70 
72  float normalize_180(float degrees);
73  double normalize_180(double degrees);
74  template<typename T> Vec2<T> normalize_180(const Vec2<T> &degrees) { return Vec2<T>(normalize_180(degrees.x), normalize_180(degrees.y)); }
75  template<typename T> Vec3<T> normalize_180(const Vec3<T> &degrees) { return Vec3<T>(normalize_180(degrees.x), normalize_180(degrees.y), normalize_180(degrees.z)); }
76  template<typename T> Vec4<T> normalize_180(const Vec4<T> &degrees) { return Vec4<T>(normalize_180(degrees.x), normalize_180(degrees.y), normalize_180(degrees.z), normalize_180(degrees.w)); }
77 
79  float normalize_2pi(float radians);
80  double normalize_2pi(double radians);
81  template<typename T> Vec2<T> normalize_2pi(const Vec2<T> &radians) { return Vec2<T>(normalize_2pi(radians.x), normalize_2pi(radians.y)); }
82  template<typename T> Vec3<T> normalize_2pi(const Vec3<T> &radians) { return Vec3<T>(normalize_2pi(radians.x), normalize_2pi(radians.y), normalize_2pi(radians.z)); }
83  template<typename T> Vec4<T> normalize_2pi(const Vec4<T> &radians) { return Vec4<T>(normalize_2pi(radians.x), normalize_2pi(radians.y), normalize_2pi(radians.z), normalize_2pi(radians.w)); }
84 
86  float normalize_pi(float radians);
87  double normalize_pi(double radians);
88  template<typename T> Vec2<T> normalize_pi(const Vec2<T> &radians) { return Vec2<T>(normalize_pi(radians.x), normalize_pi(radians.y)); }
89  template<typename T> Vec3<T> normalize_pi(const Vec3<T> &radians) { return Vec3<T>(normalize_pi(radians.x), normalize_pi(radians.y), normalize_pi(radians.z)); }
90  template<typename T> Vec4<T> normalize_pi(const Vec4<T> &radians) { return Vec4<T>(normalize_pi(radians.x), normalize_pi(radians.y), normalize_pi(radians.z), normalize_pi(radians.w)); }
91 }
float normalize_pi(float radians)
Converts angle to range [-PI,PI] radians.
2D vector
Definition: line.h:43
Type x
Definition: vec3.h:74
float radians(float degrees)
Convert a quantity in degrees to radians.
Definition: angle.h:58
float normalize_2pi(float radians)
Converts angle to range [0,2*PI] radians.
3D vector
Definition: line_ray.h:43
float normalize_180(float degrees)
Converts angle to range [-180,180] degrees.
Type x
Definition: vec4.h:74
Type x
Definition: vec2.h:75
float degrees(float radians)
Convert a quantity in radians to degrees.
Definition: angle.h:51
const float PI
Definition: pi.h:47
Type z
Definition: vec3.h:76
Type y
Definition: vec2.h:76
EulerOrder
Euler angle rotation order.
Definition: angle.h:40
Type y
Definition: vec4.h:75
Type w
Definition: vec4.h:77
float normalize_360(float degrees)
Converts angle to range [0,360] degrees.
Type y
Definition: vec3.h:75
Type z
Definition: vec4.h:76
const double PI_D
Definition: pi.h:46
Definition: Application/application.h:35
4D vector
Definition: size.h:44