39 return radians /
kPi * 180;
45 return degrees / 180 *
kPi;
132 void setRotation(
Scalar angle);
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
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