Darwin Neuroevolution Framework
math_2d.h
1 // Copyright 2019 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <cmath>
18 #include <cstring>
19 #include <limits>
20 using namespace std;
21 
22 namespace math {
23 
25 using Scalar = double;
26 
28 constexpr Scalar kInfinity = numeric_limits<Scalar>::infinity();
29 
31 constexpr Scalar kEpsilon = numeric_limits<Scalar>::epsilon();
32 
34 constexpr Scalar kPi = 3.141592653589;
35 
38 constexpr Scalar radiansToDegrees(Scalar radians) {
39  return radians / kPi * 180;
40 }
41 
44 constexpr Scalar degreesToRadians(Scalar degrees) {
45  return degrees / 180 * kPi;
46 }
47 
49 struct Vector2d {
52 
54  Vector2d() : x(0), y(0) {}
55 
57  Vector2d(Scalar x, Scalar y) : x(x), y(y) {}
58 
60  Scalar length() const { return sqrt(x * x + y * y); }
61 
63  Scalar lengthSquared() const { return x * x + y * y; }
64 
66  Vector2d normalized() const { return *this / length(); }
67 
69  Vector2d operator+(const Vector2d& v) const { return Vector2d(x + v.x, y + v.y); }
70 
72  Vector2d operator-(const Vector2d& v) const { return Vector2d(x - v.x, y - v.y); }
73 
75  Vector2d operator*(Scalar s) const { return Vector2d(x * s, y * s); }
76 
78  Vector2d operator/(Scalar s) const { return Vector2d(x / s, y / s); }
79 
81  Scalar operator*(const Vector2d& v) const { return x * v.x + y * v.y; }
82 
84  Scalar cross(const Vector2d& v) const { return x * v.y - y * v.x; }
85 };
86 
94  Scalar a = 0;
95  Scalar b = 0;
96 };
97 
106  const Vector2d& a2,
107  const Vector2d& b1,
108  const Vector2d& b2);
109 
112 struct HMatrix2d {
114  Scalar m[3][3];
115 
117  HMatrix2d() { setZero(); }
118 
120  void setZero() { ::memset(m, 0, sizeof(m)); }
121 
123  void setIdentity();
124 
126  void setTranslate(Scalar tx, Scalar ty);
127 
129  void setScale(Scalar sx, Scalar sy);
130 
132  void setRotation(Scalar angle);
133 
135  HMatrix2d operator*(const HMatrix2d& other);
136 
138  Vector2d operator*(const Vector2d& v);
139 };
140 
141 } // namespace math
constexpr Scalar kInfinity
Infinity
Definition: math_2d.h:28
constexpr Scalar kPi
Pi
Definition: math_2d.h:34
Scalar cross(const Vector2d &v) const
A 2d version of the cross product, returning a scalar.
Definition: math_2d.h:84
A basic 2D vector.
Definition: math_2d.h:49
A 3x3 homogeneous transformation matrix.
Definition: math_2d.h:112
Scalar x
x coordinate
Definition: math_2d.h:50
Scalar lengthSquared() const
Returns the length squared.
Definition: math_2d.h:63
STL namespace.
constexpr Scalar radiansToDegrees(Scalar radians)
Radian to Degree conversion
Definition: math_2d.h:38
Scalar length() const
The magnitude (length) of the vector.
Definition: math_2d.h:60
The intersection of two 2d segments.
Definition: math_2d.h:93
Vector2d normalized() const
Returns a normalized (length = 1) version of this vector.
Definition: math_2d.h:66
Vector2d operator-(const Vector2d &v) const
Vector subtraction.
Definition: math_2d.h:72
Vector2d(Scalar x, Scalar y)
Constructs a vector with the specified components.
Definition: math_2d.h:57
constexpr Scalar degreesToRadians(Scalar degrees)
Degree to Radian conversion
Definition: math_2d.h:44
Vector2d operator+(const Vector2d &v) const
Vector addition.
Definition: math_2d.h:69
Vector2d operator/(Scalar s) const
Scalar division.
Definition: math_2d.h:78
Numerical types and helpers.
Definition: math_2d.cpp:17
Scalar y
y coordinate
Definition: math_2d.h:51
double Scalar
The scalar type used with general-purpose math utilities.
Definition: math_2d.h:25
constexpr Scalar kEpsilon
Epsilon
Definition: math_2d.h:31
Vector2d()
Constructs a zero-vector.
Definition: math_2d.h:54
void setZero()
Resets all the elements to zero.
Definition: math_2d.h:120
Intersection2d intersect(const Vector2d &a1, const Vector2d &a2, const Vector2d &b1, const Vector2d &b2)
Calculate the intersection between 2 segments.
Definition: math_2d.cpp:23
Scalar operator*(const Vector2d &v) const
Dot product
Definition: math_2d.h:81
HMatrix2d()
Constructs a zero-matrix.
Definition: math_2d.h:117
Vector2d operator*(Scalar s) const
Scalar multiplication.
Definition: math_2d.h:75