NasNas
An intuitive and beginner friendly 2D game framework for C++
Maths.hpp
1 
6 #pragma once
7 
8 #include <cmath>
9 
10 #include <SFML/System/Vector2.hpp>
11 
12 namespace ns {
13  constexpr float PI = 3.14159265359f;
14 
20  inline auto to_degree(float value) -> float {
21  return value*(180.f/PI);
22  }
23 
29  inline auto to_radian(float value) -> float {
30  return value*(PI/180.f);
31  }
32 
39  template <typename T>
40  inline auto norm(const sf::Vector2<T>& vector) -> float {
41  return std::sqrt(vector.x*vector.x + vector.y*vector.y);
42  }
43 
50  template <typename T>
51  inline auto normal(const sf::Vector2<T>& vector) -> sf::Vector2f {
52  return { -vector.y, vector.x };
53  }
54 
63  template <typename T, typename S>
64  inline auto distance(const sf::Vector2<T>& point1, const sf::Vector2<S>& point2) -> float {
65  return std::sqrt((point2.x-point1.x)*(point2.x-point1.x) + (point2.y-point1.y)*(point2.y-point1.y));
66  }
67 
68  template <typename T>
69  inline auto dot_product(const sf::Vector2<T>& v1, const sf::Vector2<T>& v2) -> T {
70  return v1.x * v2.x + v1.y * v2.y;
71  }
72 
73  template <typename T>
74  inline auto cross_product(const sf::Vector2<T>& v1, const sf::Vector2<T>& v2) -> T {
75  return v1.x * v2.y - v1.y * v2.x;
76  }
77 
84  template <typename T>
85  inline auto angle(const sf::Vector2<T>& vector) -> float {
86  return std::atan2(vector.y, vector.x);
87  }
88 
96  template <typename T>
97  inline auto angle(const sf::Vector2<T>& v1, const sf::Vector2<T>& v2) -> float {
98  auto r = std::atan2(v2.y, v2.x) - std::atan2(v1.y, v1.x);
99  return (std::abs(r) > PI ? r - 2*PI*r/std::abs(r) : r);
100  }
101 
109  template <typename T>
110  inline auto operator*(const sf::Vector2<T>& v1, const sf::Vector2<T>& v2) -> sf::Vector2<T> {
111  return {v1.x*v2.x, v1.y*v2.y};
112  }
113 }
auto angle(const sf::Vector2< T > &vector) -> float
Returns the clockwise positive angle of a vector.
Definition: Maths.hpp:85
auto to_radian(float value) -> float
Converts a degree angle to radian.
Definition: Maths.hpp:29
auto distance(const sf::Vector2< T > &point1, const sf::Vector2< S > &point2) -> float
Calculates the distance between two points.
Definition: Maths.hpp:64
auto to_degree(float value) -> float
Converts a radian angle to degree.
Definition: Maths.hpp:20
auto normal(const sf::Vector2< T > &vector) -> sf::Vector2f
Calculates the normal of a vector.
Definition: Maths.hpp:51
auto norm(const sf::Vector2< T > &vector) -> float
Calculates the norm of a vector (its length)
Definition: Maths.hpp:40
auto operator*(const sf::Vector2< T > &v1, const sf::Vector2< T > &v2) -> sf::Vector2< T >
Does element wise multiplication between two vectors.
Definition: Maths.hpp:110