Compare commits
1 Commits
Experiment
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
54634f0582 |
125
Angle.cpp
125
Angle.cpp
@ -3,15 +3,15 @@
|
|||||||
// file, You can obtain one at https ://mozilla.org/MPL/2.0/.
|
// file, You can obtain one at https ://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
#include <math.h>
|
|
||||||
#include "FloatSingle.h"
|
#include "FloatSingle.h"
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
namespace LinearAlgebra {
|
const float Rad2Deg = 57.29578F;
|
||||||
|
const float Deg2Rad = 0.0174532924F;
|
||||||
|
|
||||||
//===== AngleSingle, AngleOf<float>
|
//===== AngleSingle, AngleOf<float>
|
||||||
|
|
||||||
template <>
|
template <> AngleOf<float> Passer::LinearAlgebra::AngleOf<float>::Degrees(float degrees) {
|
||||||
AngleOf<float> AngleOf<float>::Degrees(float degrees) {
|
|
||||||
if (isfinite(degrees)) {
|
if (isfinite(degrees)) {
|
||||||
while (degrees < -180)
|
while (degrees < -180)
|
||||||
degrees += 360;
|
degrees += 360;
|
||||||
@ -22,8 +22,7 @@ AngleOf<float> AngleOf<float>::Degrees(float degrees) {
|
|||||||
return AngleOf<float>(degrees);
|
return AngleOf<float>(degrees);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> AngleOf<float> AngleOf<float>::Radians(float radians) {
|
||||||
AngleOf<float> AngleOf<float>::Radians(float radians) {
|
|
||||||
if (isfinite(radians)) {
|
if (isfinite(radians)) {
|
||||||
while (radians <= -pi)
|
while (radians <= -pi)
|
||||||
radians += 2 * pi;
|
radians += 2 * pi;
|
||||||
@ -34,13 +33,9 @@ AngleOf<float> AngleOf<float>::Radians(float radians) {
|
|||||||
return Binary(radians * Rad2Deg);
|
return Binary(radians * Rad2Deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<float>::InDegrees() const { return this->value; }
|
||||||
float AngleOf<float>::InDegrees() const {
|
|
||||||
return this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<float>::InRadians() const {
|
||||||
float AngleOf<float>::InRadians() const {
|
|
||||||
return this->value * Deg2Rad;
|
return this->value * Deg2Rad;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,29 +58,25 @@ AngleOf<signed short> AngleOf<signed short>::Radians(float radians) {
|
|||||||
return Binary(value);
|
return Binary(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<signed short>::InDegrees() const {
|
||||||
float AngleOf<signed short>::InDegrees() const {
|
|
||||||
float degrees = this->value / 65536.0f * 360.0f;
|
float degrees = this->value / 65536.0f * 360.0f;
|
||||||
return degrees;
|
return degrees;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<signed short>::InRadians() const {
|
||||||
float AngleOf<signed short>::InRadians() const {
|
|
||||||
float radians = this->value / 65536.0f * (2 * pi);
|
float radians = this->value / 65536.0f * (2 * pi);
|
||||||
return radians;
|
return radians;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===== Angle8, AngleOf<signed char>
|
//===== Angle8, AngleOf<signed char>
|
||||||
|
|
||||||
template <>
|
template <> AngleOf<signed char> AngleOf<signed char>::Degrees(float degrees) {
|
||||||
AngleOf<signed char> AngleOf<signed char>::Degrees(float degrees) {
|
|
||||||
// map float [-180..180) to integer [-128..127)
|
// map float [-180..180) to integer [-128..127)
|
||||||
signed char value = (signed char)roundf(degrees / 360.0F * 256.0F);
|
signed char value = (signed char)roundf(degrees / 360.0F * 256.0F);
|
||||||
return Binary(value);
|
return Binary(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> AngleOf<signed char> AngleOf<signed char>::Radians(float radians) {
|
||||||
AngleOf<signed char> AngleOf<signed char>::Radians(float radians) {
|
|
||||||
if (!isfinite(radians))
|
if (!isfinite(radians))
|
||||||
return AngleOf<signed char>::zero;
|
return AngleOf<signed char>::zero;
|
||||||
|
|
||||||
@ -94,42 +85,32 @@ AngleOf<signed char> AngleOf<signed char>::Radians(float radians) {
|
|||||||
return Binary(value);
|
return Binary(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<signed char>::InDegrees() const {
|
||||||
float AngleOf<signed char>::InDegrees() const {
|
|
||||||
float degrees = this->value / 256.0f * 360.0f;
|
float degrees = this->value / 256.0f * 360.0f;
|
||||||
return degrees;
|
return degrees;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <> float AngleOf<signed char>::InRadians() const {
|
||||||
float AngleOf<signed char>::InRadians() const {
|
|
||||||
float radians = this->value / 128.0f * pi;
|
float radians = this->value / 128.0f * pi;
|
||||||
return radians;
|
return radians;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===== Generic
|
//===== Generic
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T>::AngleOf() : value(0) {}
|
||||||
AngleOf<T>::AngleOf() : value(0) {}
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T>::AngleOf(T rawValue) : value(rawValue) {}
|
||||||
AngleOf<T>::AngleOf(T rawValue) : value(rawValue) {}
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> const AngleOf<T> AngleOf<T>::zero = AngleOf<T>();
|
||||||
const AngleOf<T> AngleOf<T>::zero = AngleOf<T>();
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::Binary(T rawValue) {
|
||||||
AngleOf<T> AngleOf<T>::Binary(T rawValue) {
|
|
||||||
AngleOf<T> angle = AngleOf<T>();
|
AngleOf<T> angle = AngleOf<T>();
|
||||||
angle.SetBinary(rawValue);
|
angle.SetBinary(rawValue);
|
||||||
return angle;
|
return angle;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> T AngleOf<T>::GetBinary() const { return this->value; }
|
||||||
T AngleOf<T>::GetBinary() const {
|
template <typename T> void AngleOf<T>::SetBinary(T rawValue) {
|
||||||
return this->value;
|
|
||||||
}
|
|
||||||
template <typename T>
|
|
||||||
void AngleOf<T>::SetBinary(T rawValue) {
|
|
||||||
this->value = rawValue;
|
this->value = rawValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -138,28 +119,24 @@ bool AngleOf<T>::operator==(const AngleOf<T> angle) const {
|
|||||||
return this->value == angle.value;
|
return this->value == angle.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> bool AngleOf<T>::operator>(AngleOf<T> angle) const {
|
||||||
bool AngleOf<T>::operator>(AngleOf<T> angle) const {
|
|
||||||
return this->value > angle.value;
|
return this->value > angle.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> bool AngleOf<T>::operator>=(AngleOf<T> angle) const {
|
||||||
bool AngleOf<T>::operator>=(AngleOf<T> angle) const {
|
|
||||||
return this->value >= angle.value;
|
return this->value >= angle.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> bool AngleOf<T>::operator<(AngleOf<T> angle) const {
|
||||||
bool AngleOf<T>::operator<(AngleOf<T> angle) const {
|
|
||||||
return this->value < angle.value;
|
return this->value < angle.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> bool AngleOf<T>::operator<=(AngleOf<T> angle) const {
|
||||||
bool AngleOf<T>::operator<=(AngleOf<T> angle) const {
|
|
||||||
return this->value <= angle.value;
|
return this->value <= angle.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
signed int AngleOf<T>::Sign(AngleOf<T> angle) {
|
signed int Passer::LinearAlgebra::AngleOf<T>::Sign(AngleOf<T> angle) {
|
||||||
if (angle.value < 0)
|
if (angle.value < 0)
|
||||||
return -1;
|
return -1;
|
||||||
if (angle.value > 0)
|
if (angle.value > 0)
|
||||||
@ -168,52 +145,51 @@ signed int AngleOf<T>::Sign(AngleOf<T> angle) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::Abs(AngleOf<T> angle) {
|
AngleOf<T> Passer::LinearAlgebra::AngleOf<T>::Abs(AngleOf<T> angle) {
|
||||||
if (Sign(angle) < 0)
|
if (Sign(angle) < 0)
|
||||||
return -angle;
|
return -angle;
|
||||||
else
|
else
|
||||||
return angle;
|
return angle;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::operator-() const {
|
||||||
AngleOf<T> AngleOf<T>::operator-() const {
|
|
||||||
AngleOf<T> angle = Binary(-this->value);
|
AngleOf<T> angle = Binary(-this->value);
|
||||||
return angle;
|
return angle;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
AngleOf<float> AngleOf<float>::operator-(const AngleOf<float>& angle) const {
|
AngleOf<float> AngleOf<float>::operator-(const AngleOf<float> &angle) const {
|
||||||
AngleOf<float> r = Binary(this->value - angle.value);
|
AngleOf<float> r = Binary(this->value - angle.value);
|
||||||
r = Normalize(r);
|
r = Normalize(r);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::operator-(const AngleOf<T>& angle) const {
|
AngleOf<T> AngleOf<T>::operator-(const AngleOf<T> &angle) const {
|
||||||
AngleOf<T> r = Binary(this->value - angle.value);
|
AngleOf<T> r = Binary(this->value - angle.value);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
AngleOf<float> AngleOf<float>::operator+(const AngleOf<float>& angle) const {
|
AngleOf<float> AngleOf<float>::operator+(const AngleOf<float> &angle) const {
|
||||||
AngleOf<float> r = Binary(this->value + angle.value);
|
AngleOf<float> r = Binary(this->value + angle.value);
|
||||||
r = Normalize(r);
|
r = Normalize(r);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::operator+(const AngleOf<T>& angle) const {
|
AngleOf<T> AngleOf<T>::operator+(const AngleOf<T> &angle) const {
|
||||||
AngleOf<T> r = Binary(this->value + angle.value);
|
AngleOf<T> r = Binary(this->value + angle.value);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
AngleOf<float> AngleOf<float>::operator+=(const AngleOf<float>& angle) {
|
AngleOf<float> AngleOf<float>::operator+=(const AngleOf<float> &angle) {
|
||||||
this->value += angle.value;
|
this->value += angle.value;
|
||||||
this->Normalize();
|
this->Normalize();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::operator+=(const AngleOf<T>& angle) {
|
AngleOf<T> AngleOf<T>::operator+=(const AngleOf<T> &angle) {
|
||||||
this->value += angle.value;
|
this->value += angle.value;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -230,8 +206,7 @@ AngleOf<T> AngleOf<T>::operator+=(const AngleOf<T>& angle) {
|
|||||||
// return AngleOf::Degrees((float)factor * angle.InDegrees());
|
// return AngleOf::Degrees((float)factor * angle.InDegrees());
|
||||||
// }
|
// }
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> void AngleOf<T>::Normalize() {
|
||||||
void AngleOf<T>::Normalize() {
|
|
||||||
float angleValue = this->InDegrees();
|
float angleValue = this->InDegrees();
|
||||||
if (!isfinite(angleValue))
|
if (!isfinite(angleValue))
|
||||||
return;
|
return;
|
||||||
@ -243,8 +218,7 @@ void AngleOf<T>::Normalize() {
|
|||||||
*this = AngleOf::Degrees(angleValue);
|
*this = AngleOf::Degrees(angleValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::Normalize(AngleOf<T> angle) {
|
||||||
AngleOf<T> AngleOf<T>::Normalize(AngleOf<T> angle) {
|
|
||||||
float angleValue = angle.InDegrees();
|
float angleValue = angle.InDegrees();
|
||||||
if (!isfinite(angleValue))
|
if (!isfinite(angleValue))
|
||||||
return angle;
|
return angle;
|
||||||
@ -263,8 +237,7 @@ AngleOf<T> AngleOf<T>::Clamp(AngleOf<T> angle, AngleOf<T> min, AngleOf<T> max) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::MoveTowards(AngleOf<T> fromAngle,
|
AngleOf<T> AngleOf<T>::MoveTowards(AngleOf<T> fromAngle, AngleOf<T> toAngle,
|
||||||
AngleOf<T> toAngle,
|
|
||||||
float maxDegrees) {
|
float maxDegrees) {
|
||||||
maxDegrees = fmaxf(0, maxDegrees); // filter out negative distances
|
maxDegrees = fmaxf(0, maxDegrees); // filter out negative distances
|
||||||
AngleOf<T> d = toAngle - fromAngle;
|
AngleOf<T> d = toAngle - fromAngle;
|
||||||
@ -276,34 +249,28 @@ AngleOf<T> AngleOf<T>::MoveTowards(AngleOf<T> fromAngle,
|
|||||||
return fromAngle + d;
|
return fromAngle + d;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> float AngleOf<T>::Cos(AngleOf<T> angle) {
|
||||||
float AngleOf<T>::Cos(AngleOf<T> angle) {
|
|
||||||
return cosf(angle.InRadians());
|
return cosf(angle.InRadians());
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> float AngleOf<T>::Sin(AngleOf<T> angle) {
|
||||||
float AngleOf<T>::Sin(AngleOf<T> angle) {
|
|
||||||
return sinf(angle.InRadians());
|
return sinf(angle.InRadians());
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> float AngleOf<T>::Tan(AngleOf<T> angle) {
|
||||||
float AngleOf<T>::Tan(AngleOf<T> angle) {
|
|
||||||
return tanf(angle.InRadians());
|
return tanf(angle.InRadians());
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::Acos(float f) {
|
||||||
AngleOf<T> AngleOf<T>::Acos(float f) {
|
|
||||||
return AngleOf<T>::Radians(acosf(f));
|
return AngleOf<T>::Radians(acosf(f));
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::Asin(float f) {
|
||||||
AngleOf<T> AngleOf<T>::Asin(float f) {
|
|
||||||
return AngleOf<T>::Radians(asinf(f));
|
return AngleOf<T>::Radians(asinf(f));
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> AngleOf<T> AngleOf<T>::Atan(float f) {
|
||||||
AngleOf<T> AngleOf<T>::Atan(float f) {
|
|
||||||
return AngleOf<T>::Radians(atanf(f));
|
return AngleOf<T>::Radians(atanf(f));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> AngleOf<T>::Atan2(float y, float x) {
|
AngleOf<T> Passer::LinearAlgebra::AngleOf<T>::Atan2(float y, float x) {
|
||||||
return AngleOf<T>::Radians(atan2f(y, x));
|
return AngleOf<T>::Radians(atan2f(y, x));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -387,8 +354,6 @@ AngleOf<T> AngleOf<T>::SineRuleAngle(float a, AngleOf<T> beta, float b) {
|
|||||||
return alpha;
|
return alpha;
|
||||||
}
|
}
|
||||||
|
|
||||||
template class AngleOf<float>;
|
template class Passer::LinearAlgebra::AngleOf<float>;
|
||||||
template class AngleOf<signed char>;
|
template class Passer::LinearAlgebra::AngleOf<signed char>;
|
||||||
template class AngleOf<signed short>;
|
template class Passer::LinearAlgebra::AngleOf<signed short>;
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
|
29
Angle.h
29
Angle.h
@ -5,6 +5,7 @@
|
|||||||
#ifndef ANGLE_H
|
#ifndef ANGLE_H
|
||||||
#define ANGLE_H
|
#define ANGLE_H
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
static float pi = 3.1415927410125732421875F;
|
static float pi = 3.1415927410125732421875F;
|
||||||
@ -17,9 +18,8 @@ static float Deg2Rad = (pi * 2) / 360.0f;
|
|||||||
/// The angle is internally limited to (-180..180] degrees or (-PI...PI]
|
/// The angle is internally limited to (-180..180] degrees or (-PI...PI]
|
||||||
/// radians. When an angle exceeds this range, it is normalized to a value
|
/// radians. When an angle exceeds this range, it is normalized to a value
|
||||||
/// within the range.
|
/// within the range.
|
||||||
template <typename T>
|
template <typename T> class AngleOf {
|
||||||
class AngleOf {
|
public:
|
||||||
public:
|
|
||||||
/// @brief Create a new angle with a zero value
|
/// @brief Create a new angle with a zero value
|
||||||
AngleOf<T>();
|
AngleOf<T>();
|
||||||
|
|
||||||
@ -100,28 +100,28 @@ class AngleOf {
|
|||||||
/// @brief Substract another angle from this angle
|
/// @brief Substract another angle from this angle
|
||||||
/// @param angle The angle to subtract from this angle
|
/// @param angle The angle to subtract from this angle
|
||||||
/// @return The result of the subtraction
|
/// @return The result of the subtraction
|
||||||
AngleOf<T> operator-(const AngleOf<T>& angle) const;
|
AngleOf<T> operator-(const AngleOf<T> &angle) const;
|
||||||
/// @brief Add another angle from this angle
|
/// @brief Add another angle from this angle
|
||||||
/// @param angle The angle to add to this angle
|
/// @param angle The angle to add to this angle
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
AngleOf<T> operator+(const AngleOf<T>& angle) const;
|
AngleOf<T> operator+(const AngleOf<T> &angle) const;
|
||||||
/// @brief Add another angle to this angle
|
/// @brief Add another angle to this angle
|
||||||
/// @param angle The angle to add to this angle
|
/// @param angle The angle to add to this angle
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
AngleOf<T> operator+=(const AngleOf<T>& angle);
|
AngleOf<T> operator+=(const AngleOf<T> &angle);
|
||||||
|
|
||||||
/// @brief Mutliplies the angle
|
/// @brief Mutliplies the angle
|
||||||
/// @param angle The angle to multiply
|
/// @param angle The angle to multiply
|
||||||
/// @param factor The factor by which the angle is multiplied
|
/// @param factor The factor by which the angle is multiplied
|
||||||
/// @return The multiplied angle
|
/// @return The multiplied angle
|
||||||
friend AngleOf<T> operator*(const AngleOf<T>& angle, float factor) {
|
friend AngleOf<T> operator*(const AngleOf<T> &angle, float factor) {
|
||||||
return AngleOf::Degrees((float)angle.InDegrees() * factor);
|
return AngleOf::Degrees((float)angle.InDegrees() * factor);
|
||||||
}
|
}
|
||||||
/// @brief Multiplies the angle
|
/// @brief Multiplies the angle
|
||||||
/// @param factor The factor by which the angle is multiplies
|
/// @param factor The factor by which the angle is multiplies
|
||||||
/// @param angle The angle to multiply
|
/// @param angle The angle to multiply
|
||||||
/// @return The multiplied angle
|
/// @return The multiplied angle
|
||||||
friend AngleOf<T> operator*(float factor, const AngleOf<T>& angle) {
|
friend AngleOf<T> operator*(float factor, const AngleOf<T> &angle) {
|
||||||
return AngleOf::Degrees((float)factor * angle.InDegrees());
|
return AngleOf::Degrees((float)factor * angle.InDegrees());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,8 +150,7 @@ class AngleOf {
|
|||||||
/// @param toAngle The angle to rotate towards
|
/// @param toAngle The angle to rotate towards
|
||||||
/// @param maxAngle The maximum angle to rotate
|
/// @param maxAngle The maximum angle to rotate
|
||||||
/// @return The rotated angle
|
/// @return The rotated angle
|
||||||
static AngleOf<T> MoveTowards(AngleOf<T> fromAngle,
|
static AngleOf<T> MoveTowards(AngleOf<T> fromAngle, AngleOf<T> toAngle,
|
||||||
AngleOf<T> toAngle,
|
|
||||||
float maxAngle);
|
float maxAngle);
|
||||||
|
|
||||||
/// @brief Calculates the cosine of an angle
|
/// @brief Calculates the cosine of an angle
|
||||||
@ -206,7 +205,7 @@ class AngleOf {
|
|||||||
/// @return The angle of the corner opposing side A
|
/// @return The angle of the corner opposing side A
|
||||||
static AngleOf<T> SineRuleAngle(float a, AngleOf<T> beta, float c);
|
static AngleOf<T> SineRuleAngle(float a, AngleOf<T> beta, float c);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
T value;
|
T value;
|
||||||
|
|
||||||
AngleOf<T>(T rawValue);
|
AngleOf<T>(T rawValue);
|
||||||
@ -216,12 +215,8 @@ using AngleSingle = AngleOf<float>;
|
|||||||
using Angle16 = AngleOf<signed short>;
|
using Angle16 = AngleOf<signed short>;
|
||||||
using Angle8 = AngleOf<signed char>;
|
using Angle8 = AngleOf<signed char>;
|
||||||
|
|
||||||
#if defined(ARDUINO)
|
|
||||||
using Angle = Angle16;
|
|
||||||
#else
|
|
||||||
using Angle = AngleSingle;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -9,8 +9,7 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> DirectionOf<T>::DirectionOf() {
|
||||||
DirectionOf<T>::DirectionOf() {
|
|
||||||
this->horizontal = AngleOf<T>();
|
this->horizontal = AngleOf<T>();
|
||||||
this->vertical = AngleOf<T>();
|
this->vertical = AngleOf<T>();
|
||||||
}
|
}
|
||||||
@ -42,7 +41,7 @@ const DirectionOf<T> DirectionOf<T>::right =
|
|||||||
DirectionOf<T>(AngleOf<T>::Degrees(90), AngleOf<T>());
|
DirectionOf<T>(AngleOf<T>::Degrees(90), AngleOf<T>());
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
Vector3 DirectionOf<T>::ToVector3() const {
|
Vector3 Passer::LinearAlgebra::DirectionOf<T>::ToVector3() const {
|
||||||
Quaternion q = Quaternion::Euler(-this->vertical.InDegrees(),
|
Quaternion q = Quaternion::Euler(-this->vertical.InDegrees(),
|
||||||
this->horizontal.InDegrees(), 0);
|
this->horizontal.InDegrees(), 0);
|
||||||
Vector3 v = q * Vector3::forward;
|
Vector3 v = q * Vector3::forward;
|
||||||
@ -50,12 +49,12 @@ Vector3 DirectionOf<T>::ToVector3() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
DirectionOf<T> DirectionOf<T>::FromVector3(Vector3 vector) {
|
DirectionOf<T>
|
||||||
|
Passer::LinearAlgebra::DirectionOf<T>::FromVector3(Vector3 vector) {
|
||||||
DirectionOf<T> d;
|
DirectionOf<T> d;
|
||||||
d.horizontal = AngleOf<T>::Atan2(
|
d.horizontal = AngleOf<T>::Atan2(
|
||||||
vector.Right(),
|
vector.Right(),
|
||||||
vector
|
vector.Forward()); // AngleOf<T>::Radians(atan2f(v.Right(), v.Forward()));
|
||||||
.Forward()); // AngleOf<T>::Radians(atan2f(v.Right(), v.Forward()));
|
|
||||||
d.vertical =
|
d.vertical =
|
||||||
AngleOf<T>::Degrees(-90) -
|
AngleOf<T>::Degrees(-90) -
|
||||||
AngleOf<T>::Acos(
|
AngleOf<T>::Acos(
|
||||||
@ -65,32 +64,34 @@ DirectionOf<T> DirectionOf<T>::FromVector3(Vector3 vector) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
DirectionOf<T> DirectionOf<T>::Degrees(float horizontal, float vertical) {
|
DirectionOf<T> Passer::LinearAlgebra::DirectionOf<T>::Degrees(float horizontal,
|
||||||
|
float vertical) {
|
||||||
return DirectionOf<T>(AngleOf<T>::Degrees(horizontal),
|
return DirectionOf<T>(AngleOf<T>::Degrees(horizontal),
|
||||||
AngleOf<T>::Degrees(vertical));
|
AngleOf<T>::Degrees(vertical));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
DirectionOf<T> DirectionOf<T>::Radians(float horizontal, float vertical) {
|
DirectionOf<T> Passer::LinearAlgebra::DirectionOf<T>::Radians(float horizontal,
|
||||||
|
float vertical) {
|
||||||
return DirectionOf<T>(AngleOf<T>::Radians(horizontal),
|
return DirectionOf<T>(AngleOf<T>::Radians(horizontal),
|
||||||
AngleOf<T>::Radians(vertical));
|
AngleOf<T>::Radians(vertical));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
bool DirectionOf<T>::operator==(const DirectionOf<T> direction) const {
|
bool Passer::LinearAlgebra::DirectionOf<T>::operator==(
|
||||||
|
const DirectionOf<T> direction) const {
|
||||||
return (this->horizontal == direction.horizontal) &&
|
return (this->horizontal == direction.horizontal) &&
|
||||||
(this->vertical == direction.vertical);
|
(this->vertical == direction.vertical);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
DirectionOf<T> DirectionOf<T>::operator-() const {
|
DirectionOf<T> Passer::LinearAlgebra::DirectionOf<T>::operator-() const {
|
||||||
DirectionOf<T> r = DirectionOf<T>(this->horizontal + AngleOf<T>::Degrees(180),
|
DirectionOf<T> r = DirectionOf<T>(this->horizontal + AngleOf<T>::Degrees(180),
|
||||||
-this->vertical);
|
-this->vertical);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> void DirectionOf<T>::Normalize() {
|
||||||
void DirectionOf<T>::Normalize() {
|
|
||||||
if (this->vertical > AngleOf<T>::Degrees(90) ||
|
if (this->vertical > AngleOf<T>::Degrees(90) ||
|
||||||
this->vertical < AngleOf<T>::Degrees(-90)) {
|
this->vertical < AngleOf<T>::Degrees(-90)) {
|
||||||
this->horizontal += AngleOf<T>::Degrees(180);
|
this->horizontal += AngleOf<T>::Degrees(180);
|
||||||
@ -98,5 +99,5 @@ void DirectionOf<T>::Normalize() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template class DirectionOf<float>;
|
template class Passer::LinearAlgebra::DirectionOf<float>;
|
||||||
template class DirectionOf<signed short>;
|
template class Passer::LinearAlgebra::DirectionOf<signed short>;
|
||||||
|
28
Direction.h
28
Direction.h
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
struct Vector3;
|
struct Vector3;
|
||||||
@ -21,14 +22,8 @@ struct Vector3;
|
|||||||
/// rotation has been applied.
|
/// rotation has been applied.
|
||||||
/// The angles are automatically normalized to stay within the abovenmentioned
|
/// The angles are automatically normalized to stay within the abovenmentioned
|
||||||
/// ranges.
|
/// ranges.
|
||||||
template <typename T>
|
template <typename T> class DirectionOf {
|
||||||
class DirectionOf {
|
public:
|
||||||
public:
|
|
||||||
/// @brief horizontal angle, range= (-180..180]
|
|
||||||
AngleOf<T> horizontal;
|
|
||||||
/// @brief vertical angle, range in degrees = (-90..90]
|
|
||||||
AngleOf<T> vertical;
|
|
||||||
|
|
||||||
/// @brief Create a new direction with zero angles
|
/// @brief Create a new direction with zero angles
|
||||||
DirectionOf<T>();
|
DirectionOf<T>();
|
||||||
/// @brief Create a new direction
|
/// @brief Create a new direction
|
||||||
@ -36,6 +31,11 @@ class DirectionOf {
|
|||||||
/// @param vertical The vertical angle.
|
/// @param vertical The vertical angle.
|
||||||
DirectionOf<T>(AngleOf<T> horizontal, AngleOf<T> vertical);
|
DirectionOf<T>(AngleOf<T> horizontal, AngleOf<T> vertical);
|
||||||
|
|
||||||
|
/// @brief horizontal angle, range= (-180..180]
|
||||||
|
AngleOf<T> horizontal;
|
||||||
|
/// @brief vertical angle, range in degrees = (-90..90]
|
||||||
|
AngleOf<T> vertical;
|
||||||
|
|
||||||
/// @brief Convert the direction into a carthesian vector
|
/// @brief Convert the direction into a carthesian vector
|
||||||
/// @return The carthesian vector corresponding to this direction.
|
/// @return The carthesian vector corresponding to this direction.
|
||||||
Vector3 ToVector3() const;
|
Vector3 ToVector3() const;
|
||||||
@ -83,7 +83,7 @@ class DirectionOf {
|
|||||||
/// @return The reversed direction.
|
/// @return The reversed direction.
|
||||||
DirectionOf<T> operator-() const;
|
DirectionOf<T> operator-() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// @brief Normalize this vector to the specified ranges
|
/// @brief Normalize this vector to the specified ranges
|
||||||
void Normalize();
|
void Normalize();
|
||||||
};
|
};
|
||||||
@ -91,14 +91,8 @@ class DirectionOf {
|
|||||||
using DirectionSingle = DirectionOf<float>;
|
using DirectionSingle = DirectionOf<float>;
|
||||||
using Direction16 = DirectionOf<signed short>;
|
using Direction16 = DirectionOf<signed short>;
|
||||||
|
|
||||||
#if defined(ARDUINO)
|
|
||||||
using Direction = Direction16;
|
|
||||||
#else
|
|
||||||
using Direction = DirectionSingle;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
|
} // namespace Passer
|
||||||
using namespace LinearAlgebra;
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -5,10 +5,11 @@
|
|||||||
#ifndef FLOAT_H
|
#ifndef FLOAT_H
|
||||||
#define FLOAT_H
|
#define FLOAT_H
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
class Float {
|
class Float {
|
||||||
public:
|
public:
|
||||||
static const float epsilon;
|
static const float epsilon;
|
||||||
static const float sqrEpsilon;
|
static const float sqrEpsilon;
|
||||||
|
|
||||||
@ -16,7 +17,7 @@ class Float {
|
|||||||
};
|
};
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
|
} // namespace Passer
|
||||||
using namespace LinearAlgebra;
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
34
Matrix.h
34
Matrix.h
@ -3,14 +3,14 @@
|
|||||||
|
|
||||||
#include "Vector3.h"
|
#include "Vector3.h"
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
/// @brief Single precision float matrix
|
/// @brief Single precision float matrix
|
||||||
template <typename T>
|
template <typename T> class MatrixOf {
|
||||||
class MatrixOf {
|
public:
|
||||||
public:
|
|
||||||
MatrixOf(unsigned int rows, unsigned int cols);
|
MatrixOf(unsigned int rows, unsigned int cols);
|
||||||
MatrixOf(unsigned int rows, unsigned int cols, const T* source)
|
MatrixOf(unsigned int rows, unsigned int cols, const T *source)
|
||||||
: MatrixOf(rows, cols) {
|
: MatrixOf(rows, cols) {
|
||||||
Set(source);
|
Set(source);
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ class MatrixOf {
|
|||||||
|
|
||||||
/// @brief Transpose with result in matrix m
|
/// @brief Transpose with result in matrix m
|
||||||
/// @param r The matrix in which the transposed matrix is stored
|
/// @param r The matrix in which the transposed matrix is stored
|
||||||
void Transpose(MatrixOf<T>* r) const {
|
void Transpose(MatrixOf<T> *r) const {
|
||||||
// Check dimensions first
|
// Check dimensions first
|
||||||
// We dont care about the rows and cols (we overwrite them)
|
// We dont care about the rows and cols (we overwrite them)
|
||||||
// but the data size should be equal to avoid problems
|
// but the data size should be equal to avoid problems
|
||||||
@ -54,14 +54,13 @@ class MatrixOf {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Multiply(const MatrixOf<T>* m1,
|
static void Multiply(const MatrixOf<T> *m1, const MatrixOf<T> *m2,
|
||||||
const MatrixOf<T>* m2,
|
MatrixOf<T> *r);
|
||||||
MatrixOf<T>* r);
|
void Multiply(const MatrixOf<T> *m, MatrixOf<T> *r) const {
|
||||||
void Multiply(const MatrixOf<T>* m, MatrixOf<T>* r) const {
|
|
||||||
Multiply(this, m, r);
|
Multiply(this, m, r);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Vector3 Multiply(const MatrixOf<T>* m, Vector3 v);
|
static Vector3 Multiply(const MatrixOf<T> *m, Vector3 v);
|
||||||
Vector3 operator*(const Vector3 v) const;
|
Vector3 operator*(const Vector3 v) const;
|
||||||
|
|
||||||
T Get(unsigned int rowIx, unsigned int colIx) const {
|
T Get(unsigned int rowIx, unsigned int colIx) const {
|
||||||
@ -75,28 +74,28 @@ class MatrixOf {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// This function does not check on source size!
|
// This function does not check on source size!
|
||||||
void Set(const T* source) {
|
void Set(const T *source) {
|
||||||
unsigned int matrixSize = this->cols * this->rows;
|
unsigned int matrixSize = this->cols * this->rows;
|
||||||
for (unsigned int dataIx = 0; dataIx < matrixSize; dataIx++)
|
for (unsigned int dataIx = 0; dataIx < matrixSize; dataIx++)
|
||||||
this->data[dataIx] = source[dataIx];
|
this->data[dataIx] = source[dataIx];
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function does not check on source size!
|
// This function does not check on source size!
|
||||||
void SetRow(unsigned int rowIx, const T* source) {
|
void SetRow(unsigned int rowIx, const T *source) {
|
||||||
unsigned int dataIx = rowIx * this->cols;
|
unsigned int dataIx = rowIx * this->cols;
|
||||||
for (unsigned int sourceIx = 0; sourceIx < this->cols; dataIx++, sourceIx++)
|
for (unsigned int sourceIx = 0; sourceIx < this->cols; dataIx++, sourceIx++)
|
||||||
this->data[dataIx] = source[sourceIx];
|
this->data[dataIx] = source[sourceIx];
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function does not check on source size!
|
// This function does not check on source size!
|
||||||
void SetCol(unsigned int colIx, const T* source) {
|
void SetCol(unsigned int colIx, const T *source) {
|
||||||
unsigned int dataIx = colIx;
|
unsigned int dataIx = colIx;
|
||||||
for (unsigned int sourceIx = 0; sourceIx < this->cols;
|
for (unsigned int sourceIx = 0; sourceIx < this->cols;
|
||||||
dataIx += this->cols, sourceIx++)
|
dataIx += this->cols, sourceIx++)
|
||||||
this->data[dataIx] = source[sourceIx];
|
this->data[dataIx] = source[sourceIx];
|
||||||
}
|
}
|
||||||
|
|
||||||
void CopyFrom(const MatrixOf<T>* m) {
|
void CopyFrom(const MatrixOf<T> *m) {
|
||||||
unsigned int thisMatrixSize = this->cols * this->rows;
|
unsigned int thisMatrixSize = this->cols * this->rows;
|
||||||
unsigned int mMatrixSize = m->cols * m->rows;
|
unsigned int mMatrixSize = m->cols * m->rows;
|
||||||
if (mMatrixSize != thisMatrixSize)
|
if (mMatrixSize != thisMatrixSize)
|
||||||
@ -109,13 +108,14 @@ class MatrixOf {
|
|||||||
unsigned int RowCount() const { return rows; }
|
unsigned int RowCount() const { return rows; }
|
||||||
unsigned int ColCount() const { return cols; }
|
unsigned int ColCount() const { return cols; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
unsigned int rows;
|
unsigned int rows;
|
||||||
unsigned int cols;
|
unsigned int cols;
|
||||||
T* data;
|
T *data;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
54
Polar.cpp
54
Polar.cpp
@ -3,13 +3,11 @@
|
|||||||
#include "Polar.h"
|
#include "Polar.h"
|
||||||
#include "Vector2.h"
|
#include "Vector2.h"
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T>::PolarOf() {
|
||||||
PolarOf<T>::PolarOf() {
|
|
||||||
this->distance = 0.0f;
|
this->distance = 0.0f;
|
||||||
this->angle = AngleOf<T>();
|
this->angle = AngleOf<T>();
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T>::PolarOf(float distance, AngleOf<T> angle) {
|
||||||
PolarOf<T>::PolarOf(float distance, AngleOf<T> angle) {
|
|
||||||
// distance should always be 0 or greater
|
// distance should always be 0 or greater
|
||||||
if (distance < 0.0f) {
|
if (distance < 0.0f) {
|
||||||
this->distance = -distance;
|
this->distance = -distance;
|
||||||
@ -36,18 +34,16 @@ PolarOf<T> PolarOf<T>::Radians(float distance, float radians) {
|
|||||||
return PolarOf<T>(distance, AngleOf<T>::Radians(radians));
|
return PolarOf<T>(distance, AngleOf<T>::Radians(radians));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::FromVector2(Vector2 v) {
|
||||||
PolarOf<T> PolarOf<T>::FromVector2(Vector2 v) {
|
|
||||||
float distance = v.magnitude();
|
float distance = v.magnitude();
|
||||||
AngleOf<T> angle =
|
AngleOf<T> angle =
|
||||||
AngleOf<T>::Degrees(Vector2::SignedAngle(Vector2::forward, v));
|
AngleOf<T>::Degrees(Vector2::SignedAngle(Vector2::forward, v));
|
||||||
PolarOf<T> p = PolarOf(distance, angle);
|
PolarOf<T> p = PolarOf(distance, angle);
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::FromSpherical(SphericalOf<T> v) {
|
||||||
PolarOf<T> PolarOf<T>::FromSpherical(SphericalOf<T> v) {
|
float distance = v.distance * cosf(v.direction.vertical.InDegrees() *
|
||||||
float distance =
|
Passer::LinearAlgebra::Deg2Rad);
|
||||||
v.distance * cosf(v.direction.vertical.InDegrees() * Deg2Rad);
|
|
||||||
AngleOf<T> angle = v.direction.horizontal;
|
AngleOf<T> angle = v.direction.horizontal;
|
||||||
PolarOf<T> p = PolarOf(distance, angle);
|
PolarOf<T> p = PolarOf(distance, angle);
|
||||||
return p;
|
return p;
|
||||||
@ -64,37 +60,31 @@ const PolarOf<T> PolarOf<T>::right = PolarOf(1.0, AngleOf<T>::Degrees(90));
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
const PolarOf<T> PolarOf<T>::left = PolarOf(1.0, AngleOf<T>::Degrees(-90));
|
const PolarOf<T> PolarOf<T>::left = PolarOf(1.0, AngleOf<T>::Degrees(-90));
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> bool PolarOf<T>::operator==(const PolarOf &v) const {
|
||||||
bool PolarOf<T>::operator==(const PolarOf& v) const {
|
|
||||||
return (this->distance == v.distance &&
|
return (this->distance == v.distance &&
|
||||||
this->angle.InDegrees() == v.angle.InDegrees());
|
this->angle.InDegrees() == v.angle.InDegrees());
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::Normalize(const PolarOf &v) {
|
||||||
PolarOf<T> PolarOf<T>::Normalize(const PolarOf& v) {
|
|
||||||
PolarOf<T> r = PolarOf(1, v.angle);
|
PolarOf<T> r = PolarOf(1, v.angle);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::normalized() const {
|
||||||
PolarOf<T> PolarOf<T>::normalized() const {
|
|
||||||
PolarOf<T> r = PolarOf(1, this->angle);
|
PolarOf<T> r = PolarOf(1, this->angle);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator-() const {
|
||||||
PolarOf<T> PolarOf<T>::operator-() const {
|
|
||||||
PolarOf<T> v =
|
PolarOf<T> v =
|
||||||
PolarOf(this->distance, this->angle + AngleOf<T>::Degrees(180));
|
PolarOf(this->distance, this->angle + AngleOf<T>::Degrees(180));
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator-(const PolarOf &v) const {
|
||||||
PolarOf<T> PolarOf<T>::operator-(const PolarOf& v) const {
|
|
||||||
PolarOf<T> r = -v;
|
PolarOf<T> r = -v;
|
||||||
return *this + r;
|
return *this + r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator-=(const PolarOf &v) {
|
||||||
PolarOf<T> PolarOf<T>::operator-=(const PolarOf& v) {
|
|
||||||
*this = *this - v;
|
*this = *this - v;
|
||||||
return *this;
|
return *this;
|
||||||
// angle = AngleOf<T>::Normalize(newAngle);
|
// angle = AngleOf<T>::Normalize(newAngle);
|
||||||
@ -115,8 +105,7 @@ PolarOf<T> PolarOf<T>::operator-=(const PolarOf& v) {
|
|||||||
// return d;
|
// return d;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator+(const PolarOf &v) const {
|
||||||
PolarOf<T> PolarOf<T>::operator+(const PolarOf& v) const {
|
|
||||||
if (v.distance == 0)
|
if (v.distance == 0)
|
||||||
return PolarOf(this->distance, this->angle);
|
return PolarOf(this->distance, this->angle);
|
||||||
if (this->distance == 0.0f)
|
if (this->distance == 0.0f)
|
||||||
@ -144,36 +133,33 @@ PolarOf<T> PolarOf<T>::operator+(const PolarOf& v) const {
|
|||||||
PolarOf vector = PolarOf(newDistance, newAngleA);
|
PolarOf vector = PolarOf(newDistance, newAngleA);
|
||||||
return vector;
|
return vector;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator+=(const PolarOf &v) {
|
||||||
PolarOf<T> PolarOf<T>::operator+=(const PolarOf& v) {
|
|
||||||
*this = *this + v;
|
*this = *this + v;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator*=(float f) {
|
||||||
PolarOf<T> PolarOf<T>::operator*=(float f) {
|
|
||||||
this->distance *= f;
|
this->distance *= f;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T> PolarOf<T> PolarOf<T>::operator/=(float f) {
|
||||||
PolarOf<T> PolarOf<T>::operator/=(float f) {
|
|
||||||
this->distance /= f;
|
this->distance /= f;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
float PolarOf<T>::Distance(const PolarOf& v1, const PolarOf& v2) {
|
float PolarOf<T>::Distance(const PolarOf &v1, const PolarOf &v2) {
|
||||||
float d =
|
float d =
|
||||||
AngleOf<T>::CosineRuleSide(v1.distance, v2.distance, v2.angle - v1.angle);
|
AngleOf<T>::CosineRuleSide(v1.distance, v2.distance, v2.angle - v1.angle);
|
||||||
return d;
|
return d;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
PolarOf<T> PolarOf<T>::Rotate(const PolarOf& v, AngleOf<T> angle) {
|
PolarOf<T> PolarOf<T>::Rotate(const PolarOf &v, AngleOf<T> angle) {
|
||||||
AngleOf<T> a = AngleOf<T>::Normalize(v.angle + angle);
|
AngleOf<T> a = AngleOf<T>::Normalize(v.angle + angle);
|
||||||
PolarOf<T> r = PolarOf(v.distance, a);
|
PolarOf<T> r = PolarOf(v.distance, a);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template class PolarOf<float>;
|
template class Passer::LinearAlgebra::PolarOf<float>;
|
||||||
template class PolarOf<signed short>;
|
template class Passer::LinearAlgebra::PolarOf<signed short>;
|
38
Polar.h
38
Polar.h
@ -7,17 +7,16 @@
|
|||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
struct Vector2;
|
struct Vector2;
|
||||||
template <typename T>
|
template <typename T> class SphericalOf;
|
||||||
class SphericalOf;
|
|
||||||
|
|
||||||
/// @brief A polar vector using an angle in various representations
|
/// @brief A polar vector using an angle in various representations
|
||||||
/// @tparam T The implementation type used for the representation of the angle
|
/// @tparam T The implementation type used for the representation of the angle
|
||||||
template <typename T>
|
template <typename T> class PolarOf {
|
||||||
class PolarOf {
|
public:
|
||||||
public:
|
|
||||||
/// @brief The distance in meters
|
/// @brief The distance in meters
|
||||||
/// @remark The distance shall never be negative
|
/// @remark The distance shall never be negative
|
||||||
float distance;
|
float distance;
|
||||||
@ -77,12 +76,12 @@ class PolarOf {
|
|||||||
/// @return true: if it is identical to the given vector
|
/// @return true: if it is identical to the given vector
|
||||||
/// @note This uses float comparison to check equality which may have
|
/// @note This uses float comparison to check equality which may have
|
||||||
/// strange effects. Equality on floats should be avoided.
|
/// strange effects. Equality on floats should be avoided.
|
||||||
bool operator==(const PolarOf& v) const;
|
bool operator==(const PolarOf &v) const;
|
||||||
|
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @param v The vector for which you need the length
|
/// @param v The vector for which you need the length
|
||||||
/// @return The vector length;
|
/// @return The vector length;
|
||||||
inline static float Magnitude(const PolarOf& v) { return v.distance; }
|
inline static float Magnitude(const PolarOf &v) { return v.distance; }
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @return The vector length
|
/// @return The vector length
|
||||||
inline float magnitude() const { return this->distance; }
|
inline float magnitude() const { return this->distance; }
|
||||||
@ -90,7 +89,7 @@ class PolarOf {
|
|||||||
/// @brief Convert the vector to a length of 1
|
/// @brief Convert the vector to a length of 1
|
||||||
/// @param v The vector to convert
|
/// @param v The vector to convert
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
static PolarOf Normalize(const PolarOf& v);
|
static PolarOf Normalize(const PolarOf &v);
|
||||||
/// @brief Convert the vector to a length of a
|
/// @brief Convert the vector to a length of a
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
PolarOf normalized() const;
|
PolarOf normalized() const;
|
||||||
@ -103,23 +102,23 @@ class PolarOf {
|
|||||||
/// @brief Subtract a polar vector from this vector
|
/// @brief Subtract a polar vector from this vector
|
||||||
/// @param v The vector to subtract
|
/// @param v The vector to subtract
|
||||||
/// @return The result of the subtraction
|
/// @return The result of the subtraction
|
||||||
PolarOf operator-(const PolarOf& v) const;
|
PolarOf operator-(const PolarOf &v) const;
|
||||||
PolarOf operator-=(const PolarOf& v);
|
PolarOf operator-=(const PolarOf &v);
|
||||||
/// @brief Add a polar vector to this vector
|
/// @brief Add a polar vector to this vector
|
||||||
/// @param v The vector to add
|
/// @param v The vector to add
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
PolarOf operator+(const PolarOf& v) const;
|
PolarOf operator+(const PolarOf &v) const;
|
||||||
PolarOf operator+=(const PolarOf& v);
|
PolarOf operator+=(const PolarOf &v);
|
||||||
|
|
||||||
/// @brief Scale the vector uniformly up
|
/// @brief Scale the vector uniformly up
|
||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark This operation will scale the distance of the vector. The angle
|
/// @remark This operation will scale the distance of the vector. The angle
|
||||||
/// will be unaffected.
|
/// will be unaffected.
|
||||||
friend PolarOf operator*(const PolarOf& v, float f) {
|
friend PolarOf operator*(const PolarOf &v, float f) {
|
||||||
return PolarOf(v.distance * f, v.angle);
|
return PolarOf(v.distance * f, v.angle);
|
||||||
}
|
}
|
||||||
friend PolarOf operator*(float f, const PolarOf& v) {
|
friend PolarOf operator*(float f, const PolarOf &v) {
|
||||||
return PolarOf(f * v.distance, v.angle);
|
return PolarOf(f * v.distance, v.angle);
|
||||||
}
|
}
|
||||||
PolarOf operator*=(float f);
|
PolarOf operator*=(float f);
|
||||||
@ -128,10 +127,10 @@ class PolarOf {
|
|||||||
/// @return The scaled factor
|
/// @return The scaled factor
|
||||||
/// @remark This operation will scale the distance of the vector. The angle
|
/// @remark This operation will scale the distance of the vector. The angle
|
||||||
/// will be unaffected.
|
/// will be unaffected.
|
||||||
friend PolarOf operator/(const PolarOf& v, float f) {
|
friend PolarOf operator/(const PolarOf &v, float f) {
|
||||||
return PolarOf(v.distance / f, v.angle);
|
return PolarOf(v.distance / f, v.angle);
|
||||||
}
|
}
|
||||||
friend PolarOf operator/(float f, const PolarOf& v) {
|
friend PolarOf operator/(float f, const PolarOf &v) {
|
||||||
return PolarOf(f / v.distance, v.angle);
|
return PolarOf(f / v.distance, v.angle);
|
||||||
}
|
}
|
||||||
PolarOf operator/=(float f);
|
PolarOf operator/=(float f);
|
||||||
@ -140,13 +139,13 @@ class PolarOf {
|
|||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The distance between the two vectors
|
/// @return The distance between the two vectors
|
||||||
static float Distance(const PolarOf& v1, const PolarOf& v2);
|
static float Distance(const PolarOf &v1, const PolarOf &v2);
|
||||||
|
|
||||||
/// @brief Rotate a vector
|
/// @brief Rotate a vector
|
||||||
/// @param v The vector to rotate
|
/// @param v The vector to rotate
|
||||||
/// @param a The angle in degreesto rotate
|
/// @param a The angle in degreesto rotate
|
||||||
/// @return The rotated vector
|
/// @return The rotated vector
|
||||||
static PolarOf Rotate(const PolarOf& v, AngleOf<T> a);
|
static PolarOf Rotate(const PolarOf &v, AngleOf<T> a);
|
||||||
};
|
};
|
||||||
|
|
||||||
using PolarSingle = PolarOf<float>;
|
using PolarSingle = PolarOf<float>;
|
||||||
@ -154,7 +153,8 @@ using Polar16 = PolarOf<signed short>;
|
|||||||
// using Polar = PolarSingle;
|
// using Polar = PolarSingle;
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#include "Spherical.h"
|
#include "Spherical.h"
|
||||||
#include "Vector2.h"
|
#include "Vector2.h"
|
||||||
|
51
Quaternion.h
51
Quaternion.h
@ -32,13 +32,14 @@ typedef struct Quat {
|
|||||||
} Quat;
|
} Quat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A quaternion
|
/// A quaternion
|
||||||
/// </summary>
|
/// </summary>
|
||||||
struct Quaternion : Quat {
|
struct Quaternion : Quat {
|
||||||
public:
|
public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new identity quaternion
|
/// Create a new identity quaternion
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -79,7 +80,7 @@ struct Quaternion : Quat {
|
|||||||
/// <returns>A unit quaternion</returns>
|
/// <returns>A unit quaternion</returns>
|
||||||
/// This will preserve the orientation,
|
/// This will preserve the orientation,
|
||||||
/// but ensures that it is a unit quaternion.
|
/// but ensures that it is a unit quaternion.
|
||||||
static Quaternion Normalize(const Quaternion& q);
|
static Quaternion Normalize(const Quaternion &q);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convert to euler angles
|
/// Convert to euler angles
|
||||||
@ -87,14 +88,14 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="q">The quaternion to convert</param>
|
/// <param name="q">The quaternion to convert</param>
|
||||||
/// <returns>A vector containing euler angles</returns>
|
/// <returns>A vector containing euler angles</returns>
|
||||||
/// The euler angles performed in the order: Z, X, Y
|
/// The euler angles performed in the order: Z, X, Y
|
||||||
static Vector3 ToAngles(const Quaternion& q);
|
static Vector3 ToAngles(const Quaternion &q);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Rotate a vector using this quaterion
|
/// Rotate a vector using this quaterion
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="vector">The vector to rotate</param>
|
/// <param name="vector">The vector to rotate</param>
|
||||||
/// <returns>The rotated vector</returns>
|
/// <returns>The rotated vector</returns>
|
||||||
Vector3 operator*(const Vector3& vector) const;
|
Vector3 operator*(const Vector3 &vector) const;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Multiply this quaternion with another quaternion
|
/// Multiply this quaternion with another quaternion
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -102,7 +103,7 @@ struct Quaternion : Quat {
|
|||||||
/// <returns>The resulting rotation</returns>
|
/// <returns>The resulting rotation</returns>
|
||||||
/// The result will be this quaternion rotated according to
|
/// The result will be this quaternion rotated according to
|
||||||
/// the give rotation.
|
/// the give rotation.
|
||||||
Quaternion operator*(const Quaternion& rotation) const;
|
Quaternion operator*(const Quaternion &rotation) const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check the equality of two quaternions
|
/// Check the equality of two quaternions
|
||||||
@ -113,7 +114,7 @@ struct Quaternion : Quat {
|
|||||||
/// themselves. Two quaternions with the same rotational effect may have
|
/// themselves. Two quaternions with the same rotational effect may have
|
||||||
/// different components. Use Quaternion::Angle to check if the rotations are
|
/// different components. Use Quaternion::Angle to check if the rotations are
|
||||||
/// the same.
|
/// the same.
|
||||||
bool operator==(const Quaternion& quaternion) const;
|
bool operator==(const Quaternion &quaternion) const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The inverse of quaterion
|
/// The inverse of quaterion
|
||||||
@ -128,8 +129,8 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="forward">The look direction</param>
|
/// <param name="forward">The look direction</param>
|
||||||
/// <param name="upwards">The up direction</param>
|
/// <param name="upwards">The up direction</param>
|
||||||
/// <returns>The look rotation</returns>
|
/// <returns>The look rotation</returns>
|
||||||
static Quaternion LookRotation(const Vector3& forward,
|
static Quaternion LookRotation(const Vector3 &forward,
|
||||||
const Vector3& upwards);
|
const Vector3 &upwards);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a quaternion with the given forward direction with up =
|
/// Creates a quaternion with the given forward direction with up =
|
||||||
/// Vector3::up
|
/// Vector3::up
|
||||||
@ -139,7 +140,7 @@ struct Quaternion : Quat {
|
|||||||
/// For the rotation, Vector::up is used for the up direction.
|
/// For the rotation, Vector::up is used for the up direction.
|
||||||
/// Note: if the forward direction == Vector3::up, the result is
|
/// Note: if the forward direction == Vector3::up, the result is
|
||||||
/// Quaternion::identity
|
/// Quaternion::identity
|
||||||
static Quaternion LookRotation(const Vector3& forward);
|
static Quaternion LookRotation(const Vector3 &forward);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Calculat the rotation from on vector to another
|
/// Calculat the rotation from on vector to another
|
||||||
@ -156,8 +157,7 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="to">The destination rotation</param>
|
/// <param name="to">The destination rotation</param>
|
||||||
/// <param name="maxDegreesDelta">The maximum amount of degrees to
|
/// <param name="maxDegreesDelta">The maximum amount of degrees to
|
||||||
/// rotate</param> <returns>The possibly limited rotation</returns>
|
/// rotate</param> <returns>The possibly limited rotation</returns>
|
||||||
static Quaternion RotateTowards(const Quaternion& from,
|
static Quaternion RotateTowards(const Quaternion &from, const Quaternion &to,
|
||||||
const Quaternion& to,
|
|
||||||
float maxDegreesDelta);
|
float maxDegreesDelta);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -166,13 +166,13 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="angle">The angle</param>
|
/// <param name="angle">The angle</param>
|
||||||
/// <param name="axis">The axis</param>
|
/// <param name="axis">The axis</param>
|
||||||
/// <returns>The resulting quaternion</returns>
|
/// <returns>The resulting quaternion</returns>
|
||||||
static Quaternion AngleAxis(float angle, const Vector3& axis);
|
static Quaternion AngleAxis(float angle, const Vector3 &axis);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convert this quaternion to angle/axis representation
|
/// Convert this quaternion to angle/axis representation
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="angle">A pointer to the angle for the result</param>
|
/// <param name="angle">A pointer to the angle for the result</param>
|
||||||
/// <param name="axis">A pointer to the axis for the result</param>
|
/// <param name="axis">A pointer to the axis for the result</param>
|
||||||
void ToAngleAxis(float* angle, Vector3* axis);
|
void ToAngleAxis(float *angle, Vector3 *axis);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the angle between two orientations
|
/// Get the angle between two orientations
|
||||||
@ -190,9 +190,8 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="factor">The factor between 0 and 1.</param>
|
/// <param name="factor">The factor between 0 and 1.</param>
|
||||||
/// <returns>The resulting rotation</returns>
|
/// <returns>The resulting rotation</returns>
|
||||||
/// A factor 0 returns rotation1, factor1 returns rotation2.
|
/// A factor 0 returns rotation1, factor1 returns rotation2.
|
||||||
static Quaternion Slerp(const Quaternion& rotation1,
|
static Quaternion Slerp(const Quaternion &rotation1,
|
||||||
const Quaternion& rotation2,
|
const Quaternion &rotation2, float factor);
|
||||||
float factor);
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unclamped sherical lerp between two rotations
|
/// Unclamped sherical lerp between two rotations
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -202,9 +201,8 @@ struct Quaternion : Quat {
|
|||||||
/// <returns>The resulting rotation</returns>
|
/// <returns>The resulting rotation</returns>
|
||||||
/// A factor 0 returns rotation1, factor1 returns rotation2.
|
/// A factor 0 returns rotation1, factor1 returns rotation2.
|
||||||
/// Values outside the 0..1 range will result in extrapolated rotations
|
/// Values outside the 0..1 range will result in extrapolated rotations
|
||||||
static Quaternion SlerpUnclamped(const Quaternion& rotation1,
|
static Quaternion SlerpUnclamped(const Quaternion &rotation1,
|
||||||
const Quaternion& rotation2,
|
const Quaternion &rotation2, float factor);
|
||||||
float factor);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a rotation from euler angles
|
/// Create a rotation from euler angles
|
||||||
@ -262,10 +260,8 @@ struct Quaternion : Quat {
|
|||||||
/// <param name="swing">A pointer to the quaternion for the swing
|
/// <param name="swing">A pointer to the quaternion for the swing
|
||||||
/// result</param> <param name="twist">A pointer to the quaternion for the
|
/// result</param> <param name="twist">A pointer to the quaternion for the
|
||||||
/// twist result</param>
|
/// twist result</param>
|
||||||
static void GetSwingTwist(Vector3 axis,
|
static void GetSwingTwist(Vector3 axis, Quaternion rotation,
|
||||||
Quaternion rotation,
|
Quaternion *swing, Quaternion *twist);
|
||||||
Quaternion* swing,
|
|
||||||
Quaternion* twist);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Calculate the dot product of two quaternions
|
/// Calculate the dot product of two quaternions
|
||||||
@ -275,12 +271,12 @@ struct Quaternion : Quat {
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
static float Dot(Quaternion rotation1, Quaternion rotation2);
|
static float Dot(Quaternion rotation1, Quaternion rotation2);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
float GetLength() const;
|
float GetLength() const;
|
||||||
float GetLengthSquared() const;
|
float GetLengthSquared() const;
|
||||||
static float GetLengthSquared(const Quaternion& q);
|
static float GetLengthSquared(const Quaternion &q);
|
||||||
|
|
||||||
void ToAxisAngleRad(const Quaternion& q, Vector3* const axis, float* angle);
|
void ToAxisAngleRad(const Quaternion &q, Vector3 *const axis, float *angle);
|
||||||
static Quaternion FromEulerRad(Vector3 euler);
|
static Quaternion FromEulerRad(Vector3 euler);
|
||||||
static Quaternion FromEulerRadXYZ(Vector3 euler);
|
static Quaternion FromEulerRadXYZ(Vector3 euler);
|
||||||
|
|
||||||
@ -288,6 +284,7 @@ struct Quaternion : Quat {
|
|||||||
};
|
};
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -5,15 +5,13 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> SphericalOf<T>::SphericalOf() {
|
||||||
SphericalOf<T>::SphericalOf() {
|
|
||||||
this->distance = 0.0f;
|
this->distance = 0.0f;
|
||||||
this->direction = DirectionOf<T>();
|
this->direction = DirectionOf<T>();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T>::SphericalOf(float distance,
|
SphericalOf<T>::SphericalOf(float distance, AngleOf<T> horizontal,
|
||||||
AngleOf<T> horizontal,
|
|
||||||
AngleOf<T> vertical) {
|
AngleOf<T> vertical) {
|
||||||
if (distance < 0) {
|
if (distance < 0) {
|
||||||
this->distance = -distance;
|
this->distance = -distance;
|
||||||
@ -36,8 +34,7 @@ SphericalOf<T>::SphericalOf(float distance, DirectionOf<T> direction) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::Degrees(float distance,
|
SphericalOf<T> SphericalOf<T>::Degrees(float distance, float horizontal,
|
||||||
float horizontal,
|
|
||||||
float vertical) {
|
float vertical) {
|
||||||
AngleOf<T> horizontalAngle = AngleOf<T>::Degrees(horizontal);
|
AngleOf<T> horizontalAngle = AngleOf<T>::Degrees(horizontal);
|
||||||
AngleOf<T> verticalAngle = AngleOf<T>::Degrees(vertical);
|
AngleOf<T> verticalAngle = AngleOf<T>::Degrees(vertical);
|
||||||
@ -46,8 +43,7 @@ SphericalOf<T> SphericalOf<T>::Degrees(float distance,
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::Radians(float distance,
|
SphericalOf<T> SphericalOf<T>::Radians(float distance, float horizontal,
|
||||||
float horizontal,
|
|
||||||
float vertical) {
|
float vertical) {
|
||||||
return SphericalOf<T>(distance, AngleOf<T>::Radians(horizontal),
|
return SphericalOf<T>(distance, AngleOf<T>::Radians(horizontal),
|
||||||
AngleOf<T>::Radians(vertical));
|
AngleOf<T>::Radians(vertical));
|
||||||
@ -61,8 +57,7 @@ SphericalOf<T> SphericalOf<T>::FromPolar(PolarOf<T> polar) {
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> SphericalOf<T> SphericalOf<T>::FromVector3(Vector3 v) {
|
||||||
SphericalOf<T> SphericalOf<T>::FromVector3(Vector3 v) {
|
|
||||||
float distance = v.magnitude();
|
float distance = v.magnitude();
|
||||||
if (distance == 0.0f) {
|
if (distance == 0.0f) {
|
||||||
return SphericalOf(distance, AngleOf<T>(), AngleOf<T>());
|
return SphericalOf(distance, AngleOf<T>(), AngleOf<T>());
|
||||||
@ -86,8 +81,7 @@ SphericalOf<T> SphericalOf<T>::FromVector3(Vector3 v) {
|
|||||||
* @tparam T The type of the distance and direction values.
|
* @tparam T The type of the distance and direction values.
|
||||||
* @return Vector3 The 3D vector representation of the spherical coordinates.
|
* @return Vector3 The 3D vector representation of the spherical coordinates.
|
||||||
*/
|
*/
|
||||||
template <typename T>
|
template <typename T> Vector3 SphericalOf<T>::ToVector3() const {
|
||||||
Vector3 SphericalOf<T>::ToVector3() const {
|
|
||||||
float verticalRad = (pi / 2) - this->direction.vertical.InRadians();
|
float verticalRad = (pi / 2) - this->direction.vertical.InRadians();
|
||||||
float horizontalRad = this->direction.horizontal.InRadians();
|
float horizontalRad = this->direction.horizontal.InRadians();
|
||||||
|
|
||||||
@ -132,8 +126,7 @@ SphericalOf<T> SphericalOf<T>::WithDistance(float distance) {
|
|||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> SphericalOf<T> SphericalOf<T>::operator-() const {
|
||||||
SphericalOf<T> SphericalOf<T>::operator-() const {
|
|
||||||
SphericalOf<T> v = SphericalOf<T>(
|
SphericalOf<T> v = SphericalOf<T>(
|
||||||
this->distance, this->direction.horizontal + AngleOf<T>::Degrees(180),
|
this->distance, this->direction.horizontal + AngleOf<T>::Degrees(180),
|
||||||
this->direction.vertical + AngleOf<T>::Degrees(180));
|
this->direction.vertical + AngleOf<T>::Degrees(180));
|
||||||
@ -141,7 +134,7 @@ SphericalOf<T> SphericalOf<T>::operator-() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::operator-(const SphericalOf<T>& s2) const {
|
SphericalOf<T> SphericalOf<T>::operator-(const SphericalOf<T> &s2) const {
|
||||||
// let's do it the easy way...
|
// let's do it the easy way...
|
||||||
Vector3 v1 = this->ToVector3();
|
Vector3 v1 = this->ToVector3();
|
||||||
Vector3 v2 = s2.ToVector3();
|
Vector3 v2 = s2.ToVector3();
|
||||||
@ -150,13 +143,13 @@ SphericalOf<T> SphericalOf<T>::operator-(const SphericalOf<T>& s2) const {
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::operator-=(const SphericalOf<T>& v) {
|
SphericalOf<T> SphericalOf<T>::operator-=(const SphericalOf<T> &v) {
|
||||||
*this = *this - v;
|
*this = *this - v;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::operator+(const SphericalOf<T>& s2) const {
|
SphericalOf<T> SphericalOf<T>::operator+(const SphericalOf<T> &s2) const {
|
||||||
// let's do it the easy way...
|
// let's do it the easy way...
|
||||||
Vector3 v1 = this->ToVector3();
|
Vector3 v1 = this->ToVector3();
|
||||||
Vector3 v2 = s2.ToVector3();
|
Vector3 v2 = s2.ToVector3();
|
||||||
@ -211,19 +204,17 @@ SphericalOf<T> SphericalOf<T>::operator+(const SphericalOf<T>& s2) const {
|
|||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::operator+=(const SphericalOf<T>& v) {
|
SphericalOf<T> SphericalOf<T>::operator+=(const SphericalOf<T> &v) {
|
||||||
*this = *this + v;
|
*this = *this + v;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> SphericalOf<T> SphericalOf<T>::operator*=(float f) {
|
||||||
SphericalOf<T> SphericalOf<T>::operator*=(float f) {
|
|
||||||
this->distance *= f;
|
this->distance *= f;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> SphericalOf<T> SphericalOf<T>::operator/=(float f) {
|
||||||
SphericalOf<T> SphericalOf<T>::operator/=(float f) {
|
|
||||||
this->distance /= f;
|
this->distance /= f;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -234,8 +225,8 @@ SphericalOf<T> SphericalOf<T>::operator/=(float f) {
|
|||||||
const float epsilon = 1E-05f;
|
const float epsilon = 1E-05f;
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
float SphericalOf<T>::DistanceBetween(const SphericalOf<T>& v1,
|
float SphericalOf<T>::DistanceBetween(const SphericalOf<T> &v1,
|
||||||
const SphericalOf<T>& v2) {
|
const SphericalOf<T> &v2) {
|
||||||
// SphericalOf<T> difference = v1 - v2;
|
// SphericalOf<T> difference = v1 - v2;
|
||||||
// return difference.distance;
|
// return difference.distance;
|
||||||
Vector3 vec1 = v1.ToVector3();
|
Vector3 vec1 = v1.ToVector3();
|
||||||
@ -245,8 +236,8 @@ float SphericalOf<T>::DistanceBetween(const SphericalOf<T>& v1,
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> SphericalOf<T>::AngleBetween(const SphericalOf& v1,
|
AngleOf<T> SphericalOf<T>::AngleBetween(const SphericalOf &v1,
|
||||||
const SphericalOf& v2) {
|
const SphericalOf &v2) {
|
||||||
// float denominator = v1.distance * v2.distance;
|
// float denominator = v1.distance * v2.distance;
|
||||||
// if (denominator < epsilon)
|
// if (denominator < epsilon)
|
||||||
// return 0.0f;
|
// return 0.0f;
|
||||||
@ -265,9 +256,9 @@ AngleOf<T> SphericalOf<T>::AngleBetween(const SphericalOf& v1,
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
AngleOf<T> SphericalOf<T>::SignedAngleBetween(const SphericalOf<T>& v1,
|
AngleOf<T> Passer::LinearAlgebra::SphericalOf<T>::SignedAngleBetween(
|
||||||
const SphericalOf<T>& v2,
|
const SphericalOf<T> &v1, const SphericalOf<T> &v2,
|
||||||
const SphericalOf<T>& axis) {
|
const SphericalOf<T> &axis) {
|
||||||
Vector3 v1_vector = v1.ToVector3();
|
Vector3 v1_vector = v1.ToVector3();
|
||||||
Vector3 v2_vector = v2.ToVector3();
|
Vector3 v2_vector = v2.ToVector3();
|
||||||
Vector3 axis_vector = axis.ToVector3();
|
Vector3 axis_vector = axis.ToVector3();
|
||||||
@ -276,7 +267,7 @@ AngleOf<T> SphericalOf<T>::SignedAngleBetween(const SphericalOf<T>& v1,
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::Rotate(const SphericalOf<T>& v,
|
SphericalOf<T> SphericalOf<T>::Rotate(const SphericalOf<T> &v,
|
||||||
AngleOf<T> horizontalAngle,
|
AngleOf<T> horizontalAngle,
|
||||||
AngleOf<T> verticalAngle) {
|
AngleOf<T> verticalAngle) {
|
||||||
SphericalOf<T> r =
|
SphericalOf<T> r =
|
||||||
@ -285,19 +276,19 @@ SphericalOf<T> SphericalOf<T>::Rotate(const SphericalOf<T>& v,
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::RotateHorizontal(const SphericalOf<T>& v,
|
SphericalOf<T> SphericalOf<T>::RotateHorizontal(const SphericalOf<T> &v,
|
||||||
AngleOf<T> a) {
|
AngleOf<T> a) {
|
||||||
SphericalOf<T> r =
|
SphericalOf<T> r =
|
||||||
SphericalOf(v.distance, v.direction.horizontal + a, v.direction.vertical);
|
SphericalOf(v.distance, v.direction.horizontal + a, v.direction.vertical);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SphericalOf<T> SphericalOf<T>::RotateVertical(const SphericalOf<T>& v,
|
SphericalOf<T> SphericalOf<T>::RotateVertical(const SphericalOf<T> &v,
|
||||||
AngleOf<T> a) {
|
AngleOf<T> a) {
|
||||||
SphericalOf<T> r =
|
SphericalOf<T> r =
|
||||||
SphericalOf(v.distance, v.direction.horizontal, v.direction.vertical + a);
|
SphericalOf(v.distance, v.direction.horizontal, v.direction.vertical + a);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template class SphericalOf<float>;
|
template class Passer::LinearAlgebra::SphericalOf<float>;
|
||||||
template class SphericalOf<signed short>;
|
template class Passer::LinearAlgebra::SphericalOf<signed short>;
|
||||||
|
61
Spherical.h
61
Spherical.h
@ -7,17 +7,16 @@
|
|||||||
|
|
||||||
#include "Direction.h"
|
#include "Direction.h"
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
struct Vector3;
|
struct Vector3;
|
||||||
template <typename T>
|
template <typename T> class PolarOf;
|
||||||
class PolarOf;
|
|
||||||
|
|
||||||
/// @brief A spherical vector using angles in various representations
|
/// @brief A spherical vector using angles in various representations
|
||||||
/// @tparam T The implementation type used for the representations of the agles
|
/// @tparam T The implementation type used for the representations of the agles
|
||||||
template <typename T>
|
template <typename T> class SphericalOf {
|
||||||
class SphericalOf {
|
public:
|
||||||
public:
|
|
||||||
/// @brief The distance in meters
|
/// @brief The distance in meters
|
||||||
/// @remark The distance should never be negative
|
/// @remark The distance should never be negative
|
||||||
float distance;
|
float distance;
|
||||||
@ -39,8 +38,7 @@ class SphericalOf {
|
|||||||
/// @param horizontal The horizontal angle in degrees
|
/// @param horizontal The horizontal angle in degrees
|
||||||
/// @param vertical The vertical angle in degrees
|
/// @param vertical The vertical angle in degrees
|
||||||
/// @return The spherical vector
|
/// @return The spherical vector
|
||||||
static SphericalOf<T> Degrees(float distance,
|
static SphericalOf<T> Degrees(float distance, float horizontal,
|
||||||
float horizontal,
|
|
||||||
float vertical);
|
float vertical);
|
||||||
/// @brief Short-hand Deg alias for the Degrees function
|
/// @brief Short-hand Deg alias for the Degrees function
|
||||||
constexpr static auto Deg = Degrees;
|
constexpr static auto Deg = Degrees;
|
||||||
@ -50,8 +48,7 @@ class SphericalOf {
|
|||||||
/// @param horizontal The horizontal angle in radians
|
/// @param horizontal The horizontal angle in radians
|
||||||
/// @param vertical The vertical angle in radians
|
/// @param vertical The vertical angle in radians
|
||||||
/// @return The spherical vectpr
|
/// @return The spherical vectpr
|
||||||
static SphericalOf<T> Radians(float distance,
|
static SphericalOf<T> Radians(float distance, float horizontal,
|
||||||
float horizontal,
|
|
||||||
float vertical);
|
float vertical);
|
||||||
// Short-hand Rad alias for the Radians function
|
// Short-hand Rad alias for the Radians function
|
||||||
constexpr static auto Rad = Radians;
|
constexpr static auto Rad = Radians;
|
||||||
@ -98,23 +95,23 @@ class SphericalOf {
|
|||||||
/// @brief Subtract a spherical vector from this vector
|
/// @brief Subtract a spherical vector from this vector
|
||||||
/// @param v The vector to subtract
|
/// @param v The vector to subtract
|
||||||
/// @return The result of the subtraction
|
/// @return The result of the subtraction
|
||||||
SphericalOf<T> operator-(const SphericalOf<T>& v) const;
|
SphericalOf<T> operator-(const SphericalOf<T> &v) const;
|
||||||
SphericalOf<T> operator-=(const SphericalOf<T>& v);
|
SphericalOf<T> operator-=(const SphericalOf<T> &v);
|
||||||
/// @brief Add a spherical vector to this vector
|
/// @brief Add a spherical vector to this vector
|
||||||
/// @param v The vector to add
|
/// @param v The vector to add
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
SphericalOf<T> operator+(const SphericalOf<T>& v) const;
|
SphericalOf<T> operator+(const SphericalOf<T> &v) const;
|
||||||
SphericalOf<T> operator+=(const SphericalOf<T>& v);
|
SphericalOf<T> operator+=(const SphericalOf<T> &v);
|
||||||
|
|
||||||
/// @brief Scale the vector uniformly up
|
/// @brief Scale the vector uniformly up
|
||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark This operation will scale the distance of the vector. The angle
|
/// @remark This operation will scale the distance of the vector. The angle
|
||||||
/// will be unaffected.
|
/// will be unaffected.
|
||||||
friend SphericalOf<T> operator*(const SphericalOf<T>& v, float f) {
|
friend SphericalOf<T> operator*(const SphericalOf<T> &v, float f) {
|
||||||
return SphericalOf<T>(v.distance * f, v.direction);
|
return SphericalOf<T>(v.distance * f, v.direction);
|
||||||
}
|
}
|
||||||
friend SphericalOf<T> operator*(float f, const SphericalOf<T>& v) {
|
friend SphericalOf<T> operator*(float f, const SphericalOf<T> &v) {
|
||||||
return SphericalOf<T>(f * v.distance, v.direction);
|
return SphericalOf<T>(f * v.distance, v.direction);
|
||||||
}
|
}
|
||||||
SphericalOf<T> operator*=(float f);
|
SphericalOf<T> operator*=(float f);
|
||||||
@ -123,10 +120,10 @@ class SphericalOf {
|
|||||||
/// @return The scaled factor
|
/// @return The scaled factor
|
||||||
/// @remark This operation will scale the distance of the vector. The angle
|
/// @remark This operation will scale the distance of the vector. The angle
|
||||||
/// will be unaffected.
|
/// will be unaffected.
|
||||||
friend SphericalOf<T> operator/(const SphericalOf<T>& v, float f) {
|
friend SphericalOf<T> operator/(const SphericalOf<T> &v, float f) {
|
||||||
return SphericalOf<T>(v.distance / f, v.direction);
|
return SphericalOf<T>(v.distance / f, v.direction);
|
||||||
}
|
}
|
||||||
friend SphericalOf<T> operator/(float f, const SphericalOf<T>& v) {
|
friend SphericalOf<T> operator/(float f, const SphericalOf<T> &v) {
|
||||||
return SphericalOf<T>(f / v.distance, v.direction);
|
return SphericalOf<T>(f / v.distance, v.direction);
|
||||||
}
|
}
|
||||||
SphericalOf<T> operator/=(float f);
|
SphericalOf<T> operator/=(float f);
|
||||||
@ -135,42 +132,41 @@ class SphericalOf {
|
|||||||
/// @param v1 The first coordinate
|
/// @param v1 The first coordinate
|
||||||
/// @param v2 The second coordinate
|
/// @param v2 The second coordinate
|
||||||
/// @return The distance between the coordinates in meters
|
/// @return The distance between the coordinates in meters
|
||||||
static float DistanceBetween(const SphericalOf<T>& v1,
|
static float DistanceBetween(const SphericalOf<T> &v1,
|
||||||
const SphericalOf<T>& v2);
|
const SphericalOf<T> &v2);
|
||||||
/// @brief Calculate the unsigned angle between two spherical vectors
|
/// @brief Calculate the unsigned angle between two spherical vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The unsigned angle between the vectors
|
/// @return The unsigned angle between the vectors
|
||||||
static AngleOf<T> AngleBetween(const SphericalOf<T>& v1,
|
static AngleOf<T> AngleBetween(const SphericalOf<T> &v1,
|
||||||
const SphericalOf<T>& v2);
|
const SphericalOf<T> &v2);
|
||||||
/// @brief Calculate the signed angle between two spherical vectors
|
/// @brief Calculate the signed angle between two spherical vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @param axis The axis are which the angle is calculated
|
/// @param axis The axis are which the angle is calculated
|
||||||
/// @return The signed angle between the vectors
|
/// @return The signed angle between the vectors
|
||||||
static AngleOf<T> SignedAngleBetween(const SphericalOf<T>& v1,
|
static AngleOf<T> SignedAngleBetween(const SphericalOf<T> &v1,
|
||||||
const SphericalOf<T>& v2,
|
const SphericalOf<T> &v2,
|
||||||
const SphericalOf<T>& axis);
|
const SphericalOf<T> &axis);
|
||||||
|
|
||||||
/// @brief Rotate a spherical vector
|
/// @brief Rotate a spherical vector
|
||||||
/// @param v The vector to rotate
|
/// @param v The vector to rotate
|
||||||
/// @param horizontalAngle The horizontal rotation angle in local space
|
/// @param horizontalAngle The horizontal rotation angle in local space
|
||||||
/// @param verticalAngle The vertical rotation angle in local space
|
/// @param verticalAngle The vertical rotation angle in local space
|
||||||
/// @return The rotated vector
|
/// @return The rotated vector
|
||||||
static SphericalOf<T> Rotate(const SphericalOf& v,
|
static SphericalOf<T> Rotate(const SphericalOf &v, AngleOf<T> horizontalAngle,
|
||||||
AngleOf<T> horizontalAngle,
|
|
||||||
AngleOf<T> verticalAngle);
|
AngleOf<T> verticalAngle);
|
||||||
/// @brief Rotate a spherical vector horizontally
|
/// @brief Rotate a spherical vector horizontally
|
||||||
/// @param v The vector to rotate
|
/// @param v The vector to rotate
|
||||||
/// @param angle The horizontal rotation angle in local space
|
/// @param angle The horizontal rotation angle in local space
|
||||||
/// @return The rotated vector
|
/// @return The rotated vector
|
||||||
static SphericalOf<T> RotateHorizontal(const SphericalOf<T>& v,
|
static SphericalOf<T> RotateHorizontal(const SphericalOf<T> &v,
|
||||||
AngleOf<T> angle);
|
AngleOf<T> angle);
|
||||||
/// @brief Rotate a spherical vector vertically
|
/// @brief Rotate a spherical vector vertically
|
||||||
/// @param v The vector to rotate
|
/// @param v The vector to rotate
|
||||||
/// @param angle The vertical rotation angle in local space
|
/// @param angle The vertical rotation angle in local space
|
||||||
/// @return The rotated vector
|
/// @return The rotated vector
|
||||||
static SphericalOf<T> RotateVertical(const SphericalOf<T>& v,
|
static SphericalOf<T> RotateVertical(const SphericalOf<T> &v,
|
||||||
AngleOf<T> angle);
|
AngleOf<T> angle);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -184,14 +180,9 @@ using SphericalSingle = SphericalOf<float>;
|
|||||||
/// hardware
|
/// hardware
|
||||||
using Spherical16 = SphericalOf<signed short>;
|
using Spherical16 = SphericalOf<signed short>;
|
||||||
|
|
||||||
#if defined(ARDUINO)
|
|
||||||
using Spherical = Spherical16;
|
|
||||||
#else
|
|
||||||
using Spherical = SphericalSingle;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#include "Polar.h"
|
#include "Polar.h"
|
||||||
#include "Vector3.h"
|
#include "Vector3.h"
|
||||||
|
@ -164,5 +164,5 @@ void SwingTwistOf<T>::Normalize() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template class SwingTwistOf<float>;
|
template class Passer::LinearAlgebra::SwingTwistOf<float>;
|
||||||
template class SwingTwistOf<signed short>;
|
template class Passer::LinearAlgebra::SwingTwistOf<signed short>;
|
28
SwingTwist.h
28
SwingTwist.h
@ -10,14 +10,14 @@
|
|||||||
#include "Quaternion.h"
|
#include "Quaternion.h"
|
||||||
#include "Spherical.h"
|
#include "Spherical.h"
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
/// @brief An orientation using swing and twist angles in various
|
/// @brief An orientation using swing and twist angles in various
|
||||||
/// representations
|
/// representations
|
||||||
/// @tparam T The implmentation type used for the representation of the angles
|
/// @tparam T The implmentation type used for the representation of the angles
|
||||||
template <typename T>
|
template <typename T> class SwingTwistOf {
|
||||||
class SwingTwistOf {
|
public:
|
||||||
public:
|
|
||||||
DirectionOf<T> swing;
|
DirectionOf<T> swing;
|
||||||
AngleOf<T> twist;
|
AngleOf<T> twist;
|
||||||
|
|
||||||
@ -25,8 +25,7 @@ class SwingTwistOf {
|
|||||||
SwingTwistOf<T>(DirectionOf<T> swing, AngleOf<T> twist);
|
SwingTwistOf<T>(DirectionOf<T> swing, AngleOf<T> twist);
|
||||||
SwingTwistOf<T>(AngleOf<T> horizontal, AngleOf<T> vertical, AngleOf<T> twist);
|
SwingTwistOf<T>(AngleOf<T> horizontal, AngleOf<T> vertical, AngleOf<T> twist);
|
||||||
|
|
||||||
static SwingTwistOf<T> Degrees(float horizontal,
|
static SwingTwistOf<T> Degrees(float horizontal, float vertical = 0,
|
||||||
float vertical = 0,
|
|
||||||
float twist = 0);
|
float twist = 0);
|
||||||
|
|
||||||
Quaternion ToQuaternion() const;
|
Quaternion ToQuaternion() const;
|
||||||
@ -44,7 +43,7 @@ class SwingTwistOf {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="vector">The vector to rotate</param>
|
/// <param name="vector">The vector to rotate</param>
|
||||||
/// <returns>The rotated vector</returns>
|
/// <returns>The rotated vector</returns>
|
||||||
SphericalOf<T> operator*(const SphericalOf<T>& vector) const;
|
SphericalOf<T> operator*(const SphericalOf<T> &vector) const;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Multiply this rotation with another rotation
|
/// Multiply this rotation with another rotation
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -52,8 +51,8 @@ class SwingTwistOf {
|
|||||||
/// <returns>The resulting swing/twist rotation</returns>
|
/// <returns>The resulting swing/twist rotation</returns>
|
||||||
/// The result will be this rotation rotated according to
|
/// The result will be this rotation rotated according to
|
||||||
/// the give rotation.
|
/// the give rotation.
|
||||||
SwingTwistOf<T> operator*(const SwingTwistOf<T>& rotation) const;
|
SwingTwistOf<T> operator*(const SwingTwistOf<T> &rotation) const;
|
||||||
SwingTwistOf<T> operator*=(const SwingTwistOf<T>& rotation);
|
SwingTwistOf<T> operator*=(const SwingTwistOf<T> &rotation);
|
||||||
|
|
||||||
static SwingTwistOf<T> Inverse(SwingTwistOf<T> rotation);
|
static SwingTwistOf<T> Inverse(SwingTwistOf<T> rotation);
|
||||||
|
|
||||||
@ -63,9 +62,9 @@ class SwingTwistOf {
|
|||||||
/// <param name="angle">The angle</param>
|
/// <param name="angle">The angle</param>
|
||||||
/// <param name="axis">The axis</param>
|
/// <param name="axis">The axis</param>
|
||||||
/// <returns>The resulting quaternion</returns>
|
/// <returns>The resulting quaternion</returns>
|
||||||
static SwingTwistOf<T> AngleAxis(float angle, const DirectionOf<T>& axis);
|
static SwingTwistOf<T> AngleAxis(float angle, const DirectionOf<T> &axis);
|
||||||
|
|
||||||
static AngleOf<T> Angle(const SwingTwistOf<T>& r1, const SwingTwistOf<T>& r2);
|
static AngleOf<T> Angle(const SwingTwistOf<T> &r1, const SwingTwistOf<T> &r2);
|
||||||
|
|
||||||
void Normalize();
|
void Normalize();
|
||||||
};
|
};
|
||||||
@ -73,13 +72,8 @@ class SwingTwistOf {
|
|||||||
using SwingTwistSingle = SwingTwistOf<float>;
|
using SwingTwistSingle = SwingTwistOf<float>;
|
||||||
using SwingTwist16 = SwingTwistOf<signed short>;
|
using SwingTwist16 = SwingTwistOf<signed short>;
|
||||||
|
|
||||||
#if defined(ARDUINO)
|
|
||||||
using SwingTwist = SwingTwist16;
|
|
||||||
#else
|
|
||||||
using SwingTwist = SwingTwistSingle;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
51
Vector2.cpp
51
Vector2.cpp
@ -30,7 +30,7 @@ Vector2::Vector2(Vector3 v) {
|
|||||||
y = v.Forward(); // z;
|
y = v.Forward(); // z;
|
||||||
}
|
}
|
||||||
Vector2::Vector2(PolarSingle p) {
|
Vector2::Vector2(PolarSingle p) {
|
||||||
float horizontalRad = p.angle.InDegrees() * Deg2Rad;
|
float horizontalRad = p.angle.InDegrees() * Passer::LinearAlgebra::Deg2Rad;
|
||||||
float cosHorizontal = cosf(horizontalRad);
|
float cosHorizontal = cosf(horizontalRad);
|
||||||
float sinHorizontal = sinf(horizontalRad);
|
float sinHorizontal = sinf(horizontalRad);
|
||||||
|
|
||||||
@ -49,24 +49,18 @@ const Vector2 Vector2::down = Vector2(0, -1);
|
|||||||
const Vector2 Vector2::forward = Vector2(0, 1);
|
const Vector2 Vector2::forward = Vector2(0, 1);
|
||||||
const Vector2 Vector2::back = Vector2(0, -1);
|
const Vector2 Vector2::back = Vector2(0, -1);
|
||||||
|
|
||||||
bool Vector2::operator==(const Vector2& v) {
|
bool Vector2::operator==(const Vector2 &v) {
|
||||||
return (this->x == v.x && this->y == v.y);
|
return (this->x == v.x && this->y == v.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector2::Magnitude(const Vector2& v) {
|
float Vector2::Magnitude(const Vector2 &v) {
|
||||||
return sqrtf(v.x * v.x + v.y * v.y);
|
return sqrtf(v.x * v.x + v.y * v.y);
|
||||||
}
|
}
|
||||||
float Vector2::magnitude() const {
|
float Vector2::magnitude() const { return (float)sqrtf(x * x + y * y); }
|
||||||
return (float)sqrtf(x * x + y * y);
|
float Vector2::SqrMagnitude(const Vector2 &v) { return v.x * v.x + v.y * v.y; }
|
||||||
}
|
float Vector2::sqrMagnitude() const { return (x * x + y * y); }
|
||||||
float Vector2::SqrMagnitude(const Vector2& v) {
|
|
||||||
return v.x * v.x + v.y * v.y;
|
|
||||||
}
|
|
||||||
float Vector2::sqrMagnitude() const {
|
|
||||||
return (x * x + y * y);
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector2 Vector2::Normalize(const Vector2& v) {
|
Vector2 Vector2::Normalize(const Vector2 &v) {
|
||||||
float num = Vector2::Magnitude(v);
|
float num = Vector2::Magnitude(v);
|
||||||
Vector2 result = Vector2::zero;
|
Vector2 result = Vector2::zero;
|
||||||
if (num > Float::epsilon) {
|
if (num > Float::epsilon) {
|
||||||
@ -83,28 +77,26 @@ Vector2 Vector2::normalized() const {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2 Vector2::operator-() {
|
Vector2 Vector2::operator-() { return Vector2(-this->x, -this->y); }
|
||||||
return Vector2(-this->x, -this->y);
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector2 Vector2::operator-(const Vector2& v) const {
|
Vector2 Vector2::operator-(const Vector2 &v) const {
|
||||||
return Vector2(this->x - v.x, this->y - v.y);
|
return Vector2(this->x - v.x, this->y - v.y);
|
||||||
}
|
}
|
||||||
Vector2 Vector2::operator-=(const Vector2& v) {
|
Vector2 Vector2::operator-=(const Vector2 &v) {
|
||||||
this->x -= v.x;
|
this->x -= v.x;
|
||||||
this->y -= v.y;
|
this->y -= v.y;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
Vector2 Vector2::operator+(const Vector2& v) const {
|
Vector2 Vector2::operator+(const Vector2 &v) const {
|
||||||
return Vector2(this->x + v.x, this->y + v.y);
|
return Vector2(this->x + v.x, this->y + v.y);
|
||||||
}
|
}
|
||||||
Vector2 Vector2::operator+=(const Vector2& v) {
|
Vector2 Vector2::operator+=(const Vector2 &v) {
|
||||||
this->x += v.x;
|
this->x += v.x;
|
||||||
this->y += v.y;
|
this->y += v.y;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2 Vector2::Scale(const Vector2& v1, const Vector2& v2) {
|
Vector2 Vector2::Scale(const Vector2 &v1, const Vector2 &v2) {
|
||||||
return Vector2(v1.x * v2.x, v1.y * v2.y);
|
return Vector2(v1.x * v2.x, v1.y * v2.y);
|
||||||
}
|
}
|
||||||
// Vector2 Passer::LinearAlgebra::operator*(const Vector2 &v, float f) {
|
// Vector2 Passer::LinearAlgebra::operator*(const Vector2 &v, float f) {
|
||||||
@ -130,18 +122,18 @@ Vector2 Vector2::operator/=(float f) {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector2::Dot(const Vector2& v1, const Vector2& v2) {
|
float Vector2::Dot(const Vector2 &v1, const Vector2 &v2) {
|
||||||
return v1.x * v2.x + v1.y * v2.y;
|
return v1.x * v2.x + v1.y * v2.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector2::Distance(const Vector2& v1, const Vector2& v2) {
|
float Vector2::Distance(const Vector2 &v1, const Vector2 &v2) {
|
||||||
return Magnitude(v1 - v2);
|
return Magnitude(v1 - v2);
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector2::Angle(const Vector2& v1, const Vector2& v2) {
|
float Vector2::Angle(const Vector2 &v1, const Vector2 &v2) {
|
||||||
return (float)fabs(SignedAngle(v1, v2));
|
return (float)fabs(SignedAngle(v1, v2));
|
||||||
}
|
}
|
||||||
float Vector2::SignedAngle(const Vector2& v1, const Vector2& v2) {
|
float Vector2::SignedAngle(const Vector2 &v1, const Vector2 &v2) {
|
||||||
float sqrMagFrom = v1.sqrMagnitude();
|
float sqrMagFrom = v1.sqrMagnitude();
|
||||||
float sqrMagTo = v2.sqrMagnitude();
|
float sqrMagTo = v2.sqrMagnitude();
|
||||||
|
|
||||||
@ -156,11 +148,12 @@ float Vector2::SignedAngle(const Vector2& v1, const Vector2& v2) {
|
|||||||
|
|
||||||
float angleFrom = atan2f(v1.y, v1.x);
|
float angleFrom = atan2f(v1.y, v1.x);
|
||||||
float angleTo = atan2f(v2.y, v2.x);
|
float angleTo = atan2f(v2.y, v2.x);
|
||||||
return -(angleTo - angleFrom) * Rad2Deg;
|
return -(angleTo - angleFrom) * Passer::LinearAlgebra::Rad2Deg;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2 Vector2::Rotate(const Vector2& v, AngleSingle a) {
|
Vector2 Vector2::Rotate(const Vector2 &v,
|
||||||
float angleRad = a.InDegrees() * Deg2Rad;
|
Passer::LinearAlgebra::AngleSingle a) {
|
||||||
|
float angleRad = a.InDegrees() * Passer::LinearAlgebra::Deg2Rad;
|
||||||
#if defined(AVR)
|
#if defined(AVR)
|
||||||
float sinValue = sin(angleRad);
|
float sinValue = sin(angleRad);
|
||||||
float cosValue = cos(angleRad); // * Angle::Deg2Rad);
|
float cosValue = cos(angleRad); // * Angle::Deg2Rad);
|
||||||
@ -176,7 +169,7 @@ Vector2 Vector2::Rotate(const Vector2& v, AngleSingle a) {
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2 Vector2::Lerp(const Vector2& v1, const Vector2& v2, float f) {
|
Vector2 Vector2::Lerp(const Vector2 &v1, const Vector2 &v2, float f) {
|
||||||
Vector2 v = v1 + (v2 - v1) * f;
|
Vector2 v = v1 + (v2 - v1) * f;
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
47
Vector2.h
47
Vector2.h
@ -26,11 +26,11 @@ typedef struct Vec2 {
|
|||||||
} Vec2;
|
} Vec2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
struct Vector3;
|
struct Vector3;
|
||||||
template <typename T>
|
template <typename T> class PolarOf;
|
||||||
class PolarOf;
|
|
||||||
|
|
||||||
/// @brief A 2-dimensional vector
|
/// @brief A 2-dimensional vector
|
||||||
/// @remark This uses the right=handed carthesian coordinate system.
|
/// @remark This uses the right=handed carthesian coordinate system.
|
||||||
@ -38,7 +38,7 @@ class PolarOf;
|
|||||||
struct Vector2 : Vec2 {
|
struct Vector2 : Vec2 {
|
||||||
friend struct Vec2;
|
friend struct Vec2;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// @brief A new 2-dimensional zero vector
|
/// @brief A new 2-dimensional zero vector
|
||||||
Vector2();
|
Vector2();
|
||||||
/// @brief A new 2-dimensional vector
|
/// @brief A new 2-dimensional vector
|
||||||
@ -80,12 +80,12 @@ struct Vector2 : Vec2 {
|
|||||||
/// @return true if it is identical to the given vector
|
/// @return true if it is identical to the given vector
|
||||||
/// @note This uses float comparison to check equality which may have strange
|
/// @note This uses float comparison to check equality which may have strange
|
||||||
/// effects. Equality on floats should be avoided.
|
/// effects. Equality on floats should be avoided.
|
||||||
bool operator==(const Vector2& v);
|
bool operator==(const Vector2 &v);
|
||||||
|
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @param v The vector for which you need the length
|
/// @param v The vector for which you need the length
|
||||||
/// @return The vector length
|
/// @return The vector length
|
||||||
static float Magnitude(const Vector2& v);
|
static float Magnitude(const Vector2 &v);
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @return The vector length
|
/// @return The vector length
|
||||||
float magnitude() const;
|
float magnitude() const;
|
||||||
@ -95,7 +95,7 @@ struct Vector2 : Vec2 {
|
|||||||
/// @remark The squared length is computationally simpler than the real
|
/// @remark The squared length is computationally simpler than the real
|
||||||
/// length. Think of Pythagoras A^2 + B^2 = C^2. This prevents the calculation
|
/// length. Think of Pythagoras A^2 + B^2 = C^2. This prevents the calculation
|
||||||
/// of the squared root of C.
|
/// of the squared root of C.
|
||||||
static float SqrMagnitude(const Vector2& v);
|
static float SqrMagnitude(const Vector2 &v);
|
||||||
/// @brief The squared vector length
|
/// @brief The squared vector length
|
||||||
/// @return The squared vector length
|
/// @return The squared vector length
|
||||||
/// @remark The squared length is computationally simpler than the real
|
/// @remark The squared length is computationally simpler than the real
|
||||||
@ -106,7 +106,7 @@ struct Vector2 : Vec2 {
|
|||||||
/// @brief Convert the vector to a length of 1
|
/// @brief Convert the vector to a length of 1
|
||||||
/// @param v The vector to convert
|
/// @param v The vector to convert
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
static Vector2 Normalize(const Vector2& v);
|
static Vector2 Normalize(const Vector2 &v);
|
||||||
/// @brief Convert the vector to a length 1
|
/// @brief Convert the vector to a length 1
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
Vector2 normalized() const;
|
Vector2 normalized() const;
|
||||||
@ -118,13 +118,13 @@ struct Vector2 : Vec2 {
|
|||||||
/// @brief Subtract a vector from this vector
|
/// @brief Subtract a vector from this vector
|
||||||
/// @param v The vector to subtract from this vector
|
/// @param v The vector to subtract from this vector
|
||||||
/// @return The result of the subtraction
|
/// @return The result of the subtraction
|
||||||
Vector2 operator-(const Vector2& v) const;
|
Vector2 operator-(const Vector2 &v) const;
|
||||||
Vector2 operator-=(const Vector2& v);
|
Vector2 operator-=(const Vector2 &v);
|
||||||
/// @brief Add a vector to this vector
|
/// @brief Add a vector to this vector
|
||||||
/// @param v The vector to add to this vector
|
/// @param v The vector to add to this vector
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
Vector2 operator+(const Vector2& v) const;
|
Vector2 operator+(const Vector2 &v) const;
|
||||||
Vector2 operator+=(const Vector2& v);
|
Vector2 operator+=(const Vector2 &v);
|
||||||
|
|
||||||
/// @brief Scale the vector using another vector
|
/// @brief Scale the vector using another vector
|
||||||
/// @param v1 The vector to scale
|
/// @param v1 The vector to scale
|
||||||
@ -132,16 +132,16 @@ struct Vector2 : Vec2 {
|
|||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each component of the vector v1 will be multiplied with the
|
/// @remark Each component of the vector v1 will be multiplied with the
|
||||||
/// matching component from the scaling vector v2.
|
/// matching component from the scaling vector v2.
|
||||||
static Vector2 Scale(const Vector2& v1, const Vector2& v2);
|
static Vector2 Scale(const Vector2 &v1, const Vector2 &v2);
|
||||||
/// @brief Scale the vector uniformly up
|
/// @brief Scale the vector uniformly up
|
||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each component of the vector will be multipled with the same
|
/// @remark Each component of the vector will be multipled with the same
|
||||||
/// factor f.
|
/// factor f.
|
||||||
friend Vector2 operator*(const Vector2& v, float f) {
|
friend Vector2 operator*(const Vector2 &v, float f) {
|
||||||
return Vector2(v.x * f, v.y * f);
|
return Vector2(v.x * f, v.y * f);
|
||||||
}
|
}
|
||||||
friend Vector2 operator*(float f, const Vector2& v) {
|
friend Vector2 operator*(float f, const Vector2 &v) {
|
||||||
return Vector2(v.x * f, v.y * f);
|
return Vector2(v.x * f, v.y * f);
|
||||||
// return Vector2(f * v.x, f * v.y);
|
// return Vector2(f * v.x, f * v.y);
|
||||||
}
|
}
|
||||||
@ -150,10 +150,10 @@ struct Vector2 : Vec2 {
|
|||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each componet of the vector will be divided by the same factor.
|
/// @remark Each componet of the vector will be divided by the same factor.
|
||||||
friend Vector2 operator/(const Vector2& v, float f) {
|
friend Vector2 operator/(const Vector2 &v, float f) {
|
||||||
return Vector2(v.x / f, v.y / f);
|
return Vector2(v.x / f, v.y / f);
|
||||||
}
|
}
|
||||||
friend Vector2 operator/(float f, const Vector2& v) {
|
friend Vector2 operator/(float f, const Vector2 &v) {
|
||||||
return Vector2(f / v.x, f / v.y);
|
return Vector2(f / v.x, f / v.y);
|
||||||
}
|
}
|
||||||
Vector2 operator/=(float f);
|
Vector2 operator/=(float f);
|
||||||
@ -162,13 +162,13 @@ struct Vector2 : Vec2 {
|
|||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The dot product of the two vectors
|
/// @return The dot product of the two vectors
|
||||||
static float Dot(const Vector2& v1, const Vector2& v2);
|
static float Dot(const Vector2 &v1, const Vector2 &v2);
|
||||||
|
|
||||||
/// @brief The distance between two vectors
|
/// @brief The distance between two vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The distance between the two vectors
|
/// @return The distance between the two vectors
|
||||||
static float Distance(const Vector2& v1, const Vector2& v2);
|
static float Distance(const Vector2 &v1, const Vector2 &v2);
|
||||||
|
|
||||||
/// @brief The angle between two vectors
|
/// @brief The angle between two vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
@ -177,18 +177,18 @@ struct Vector2 : Vec2 {
|
|||||||
/// @remark This reterns an unsigned angle which is the shortest distance
|
/// @remark This reterns an unsigned angle which is the shortest distance
|
||||||
/// between the two vectors. Use Vector2::SignedAngle if a signed angle is
|
/// between the two vectors. Use Vector2::SignedAngle if a signed angle is
|
||||||
/// needed.
|
/// needed.
|
||||||
static float Angle(const Vector2& v1, const Vector2& v2);
|
static float Angle(const Vector2 &v1, const Vector2 &v2);
|
||||||
/// @brief The signed angle between two vectors
|
/// @brief The signed angle between two vectors
|
||||||
/// @param v1 The starting vector
|
/// @param v1 The starting vector
|
||||||
/// @param v2 The ending vector
|
/// @param v2 The ending vector
|
||||||
/// @return The signed angle between the two vectors
|
/// @return The signed angle between the two vectors
|
||||||
static float SignedAngle(const Vector2& v1, const Vector2& v2);
|
static float SignedAngle(const Vector2 &v1, const Vector2 &v2);
|
||||||
|
|
||||||
/// @brief Rotate the vector
|
/// @brief Rotate the vector
|
||||||
/// @param v The vector to rotate
|
/// @param v The vector to rotate
|
||||||
/// @param a The angle in degrees to rotate
|
/// @param a The angle in degrees to rotate
|
||||||
/// @return The rotated vector
|
/// @return The rotated vector
|
||||||
static Vector2 Rotate(const Vector2& v, AngleSingle a);
|
static Vector2 Rotate(const Vector2 &v, Passer::LinearAlgebra::AngleSingle a);
|
||||||
|
|
||||||
/// @brief Lerp (linear interpolation) between two vectors
|
/// @brief Lerp (linear interpolation) between two vectors
|
||||||
/// @param v1 The starting vector
|
/// @param v1 The starting vector
|
||||||
@ -198,11 +198,12 @@ struct Vector2 : Vec2 {
|
|||||||
/// @remark The factor f is unclamped. Value 0 matches the vector *v1*, Value
|
/// @remark The factor f is unclamped. Value 0 matches the vector *v1*, Value
|
||||||
/// 1 matches vector *v2*. Value -1 is vector *v1* minus the difference
|
/// 1 matches vector *v2*. Value -1 is vector *v1* minus the difference
|
||||||
/// between *v1* and *v2* etc.
|
/// between *v1* and *v2* etc.
|
||||||
static Vector2 Lerp(const Vector2& v1, const Vector2& v2, float f);
|
static Vector2 Lerp(const Vector2 &v1, const Vector2 &v2, float f);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#include "Polar.h"
|
#include "Polar.h"
|
||||||
|
|
||||||
|
51
Vector3.cpp
51
Vector3.cpp
@ -31,8 +31,10 @@ Vector3::Vector3(Vector2 v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Vector3::Vector3(SphericalOf<float> s) {
|
Vector3::Vector3(SphericalOf<float> s) {
|
||||||
float verticalRad = (90.0f - s.direction.vertical.InDegrees()) * Deg2Rad;
|
float verticalRad = (90.0f - s.direction.vertical.InDegrees()) *
|
||||||
float horizontalRad = s.direction.horizontal.InDegrees() * Deg2Rad;
|
Passer::LinearAlgebra::Deg2Rad;
|
||||||
|
float horizontalRad =
|
||||||
|
s.direction.horizontal.InDegrees() * Passer::LinearAlgebra::Deg2Rad;
|
||||||
float cosVertical = cosf(verticalRad);
|
float cosVertical = cosf(verticalRad);
|
||||||
float sinVertical = sinf(verticalRad);
|
float sinVertical = sinf(verticalRad);
|
||||||
float cosHorizontal = cosf(horizontalRad);
|
float cosHorizontal = cosf(horizontalRad);
|
||||||
@ -65,21 +67,17 @@ const Vector3 Vector3::back = Vector3(0, 0, -1);
|
|||||||
// return Vector3(v.x, 0, v.y);
|
// return Vector3(v.x, 0, v.y);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
float Vector3::Magnitude(const Vector3& v) {
|
float Vector3::Magnitude(const Vector3 &v) {
|
||||||
return sqrtf(v.x * v.x + v.y * v.y + v.z * v.z);
|
return sqrtf(v.x * v.x + v.y * v.y + v.z * v.z);
|
||||||
}
|
}
|
||||||
float Vector3::magnitude() const {
|
float Vector3::magnitude() const { return (float)sqrtf(x * x + y * y + z * z); }
|
||||||
return (float)sqrtf(x * x + y * y + z * z);
|
|
||||||
}
|
|
||||||
|
|
||||||
float Vector3::SqrMagnitude(const Vector3& v) {
|
float Vector3::SqrMagnitude(const Vector3 &v) {
|
||||||
return v.x * v.x + v.y * v.y + v.z * v.z;
|
return v.x * v.x + v.y * v.y + v.z * v.z;
|
||||||
}
|
}
|
||||||
float Vector3::sqrMagnitude() const {
|
float Vector3::sqrMagnitude() const { return (x * x + y * y + z * z); }
|
||||||
return (x * x + y * y + z * z);
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector3 Vector3::Normalize(const Vector3& v) {
|
Vector3 Vector3::Normalize(const Vector3 &v) {
|
||||||
float num = Vector3::Magnitude(v);
|
float num = Vector3::Magnitude(v);
|
||||||
Vector3 result = Vector3::zero;
|
Vector3 result = Vector3::zero;
|
||||||
if (num > epsilon) {
|
if (num > epsilon) {
|
||||||
@ -100,26 +98,26 @@ Vector3 Vector3::operator-() const {
|
|||||||
return Vector3(-this->x, -this->y, -this->z);
|
return Vector3(-this->x, -this->y, -this->z);
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::operator-(const Vector3& v) const {
|
Vector3 Vector3::operator-(const Vector3 &v) const {
|
||||||
return Vector3(this->x - v.x, this->y - v.y, this->z - v.z);
|
return Vector3(this->x - v.x, this->y - v.y, this->z - v.z);
|
||||||
}
|
}
|
||||||
Vector3 Vector3::operator-=(const Vector3& v) {
|
Vector3 Vector3::operator-=(const Vector3 &v) {
|
||||||
this->x -= v.x;
|
this->x -= v.x;
|
||||||
this->y -= v.y;
|
this->y -= v.y;
|
||||||
this->z -= v.z;
|
this->z -= v.z;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
Vector3 Vector3::operator+(const Vector3& v) const {
|
Vector3 Vector3::operator+(const Vector3 &v) const {
|
||||||
return Vector3(this->x + v.x, this->y + v.y, this->z + v.z);
|
return Vector3(this->x + v.x, this->y + v.y, this->z + v.z);
|
||||||
}
|
}
|
||||||
Vector3 Vector3::operator+=(const Vector3& v) {
|
Vector3 Vector3::operator+=(const Vector3 &v) {
|
||||||
this->x += v.x;
|
this->x += v.x;
|
||||||
this->y += v.y;
|
this->y += v.y;
|
||||||
this->z += v.z;
|
this->z += v.z;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::Scale(const Vector3& v1, const Vector3& v2) {
|
Vector3 Vector3::Scale(const Vector3 &v1, const Vector3 &v2) {
|
||||||
return Vector3(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z);
|
return Vector3(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z);
|
||||||
}
|
}
|
||||||
// Vector3 Passer::LinearAlgebra::operator*(const Vector3 &v, float f) {
|
// Vector3 Passer::LinearAlgebra::operator*(const Vector3 &v, float f) {
|
||||||
@ -147,24 +145,24 @@ Vector3 Vector3::operator/=(float f) {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector3::Dot(const Vector3& v1, const Vector3& v2) {
|
float Vector3::Dot(const Vector3 &v1, const Vector3 &v2) {
|
||||||
return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
|
return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Vector3::operator==(const Vector3& v) const {
|
bool Vector3::operator==(const Vector3 &v) const {
|
||||||
return (this->x == v.x && this->y == v.y && this->z == v.z);
|
return (this->x == v.x && this->y == v.y && this->z == v.z);
|
||||||
}
|
}
|
||||||
|
|
||||||
float Vector3::Distance(const Vector3& v1, const Vector3& v2) {
|
float Vector3::Distance(const Vector3 &v1, const Vector3 &v2) {
|
||||||
return Magnitude(v1 - v2);
|
return Magnitude(v1 - v2);
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::Cross(const Vector3& v1, const Vector3& v2) {
|
Vector3 Vector3::Cross(const Vector3 &v1, const Vector3 &v2) {
|
||||||
return Vector3(v1.y * v2.z - v1.z * v2.y, v1.z * v2.x - v1.x * v2.z,
|
return Vector3(v1.y * v2.z - v1.z * v2.y, v1.z * v2.x - v1.x * v2.z,
|
||||||
v1.x * v2.y - v1.y * v2.x);
|
v1.x * v2.y - v1.y * v2.x);
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::Project(const Vector3& v, const Vector3& n) {
|
Vector3 Vector3::Project(const Vector3 &v, const Vector3 &n) {
|
||||||
float sqrMagnitude = Dot(n, n);
|
float sqrMagnitude = Dot(n, n);
|
||||||
if (sqrMagnitude < epsilon)
|
if (sqrMagnitude < epsilon)
|
||||||
return Vector3::zero;
|
return Vector3::zero;
|
||||||
@ -175,7 +173,7 @@ Vector3 Vector3::Project(const Vector3& v, const Vector3& n) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::ProjectOnPlane(const Vector3& v, const Vector3& n) {
|
Vector3 Vector3::ProjectOnPlane(const Vector3 &v, const Vector3 &n) {
|
||||||
Vector3 r = v - Project(v, n);
|
Vector3 r = v - Project(v, n);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
@ -186,7 +184,7 @@ float clamp(float x, float lower, float upper) {
|
|||||||
return upperClamp;
|
return upperClamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
AngleOf<float> Vector3::Angle(const Vector3& v1, const Vector3& v2) {
|
AngleOf<float> Vector3::Angle(const Vector3 &v1, const Vector3 &v2) {
|
||||||
float denominator = sqrtf(v1.sqrMagnitude() * v2.sqrMagnitude());
|
float denominator = sqrtf(v1.sqrMagnitude() * v2.sqrMagnitude());
|
||||||
if (denominator < epsilon)
|
if (denominator < epsilon)
|
||||||
return AngleOf<float>();
|
return AngleOf<float>();
|
||||||
@ -202,9 +200,8 @@ AngleOf<float> Vector3::Angle(const Vector3& v1, const Vector3& v2) {
|
|||||||
return AngleOf<float>::Radians(r);
|
return AngleOf<float>::Radians(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
AngleOf<float> Vector3::SignedAngle(const Vector3& v1,
|
AngleOf<float> Vector3::SignedAngle(const Vector3 &v1, const Vector3 &v2,
|
||||||
const Vector3& v2,
|
const Vector3 &axis) {
|
||||||
const Vector3& axis) {
|
|
||||||
// angle in [0,180]
|
// angle in [0,180]
|
||||||
AngleOf<float> angle = Vector3::Angle(v1, v2);
|
AngleOf<float> angle = Vector3::Angle(v1, v2);
|
||||||
|
|
||||||
@ -218,7 +215,7 @@ AngleOf<float> Vector3::SignedAngle(const Vector3& v1,
|
|||||||
return AngleOf<float>(signed_angle);
|
return AngleOf<float>(signed_angle);
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 Vector3::Lerp(const Vector3& v1, const Vector3& v2, float f) {
|
Vector3 Vector3::Lerp(const Vector3 &v1, const Vector3 &v2, float f) {
|
||||||
Vector3 v = v1 + (v2 - v1) * f;
|
Vector3 v = v1 + (v2 - v1) * f;
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
56
Vector3.h
56
Vector3.h
@ -14,7 +14,7 @@ extern "C" {
|
|||||||
/// This is a C-style implementation
|
/// This is a C-style implementation
|
||||||
/// This uses the right-handed coordinate system.
|
/// This uses the right-handed coordinate system.
|
||||||
typedef struct Vec3 {
|
typedef struct Vec3 {
|
||||||
protected:
|
protected:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The right axis of the vector
|
/// The right axis of the vector
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -31,10 +31,10 @@ typedef struct Vec3 {
|
|||||||
} Vec3;
|
} Vec3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace Passer {
|
||||||
namespace LinearAlgebra {
|
namespace LinearAlgebra {
|
||||||
|
|
||||||
template <typename T>
|
template <typename T> class SphericalOf;
|
||||||
class SphericalOf;
|
|
||||||
|
|
||||||
/// @brief A 3-dimensional vector
|
/// @brief A 3-dimensional vector
|
||||||
/// @remark This uses a right-handed carthesian coordinate system.
|
/// @remark This uses a right-handed carthesian coordinate system.
|
||||||
@ -42,7 +42,7 @@ class SphericalOf;
|
|||||||
struct Vector3 : Vec3 {
|
struct Vector3 : Vec3 {
|
||||||
friend struct Vec3;
|
friend struct Vec3;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// @brief A new 3-dimensional zero vector
|
/// @brief A new 3-dimensional zero vector
|
||||||
Vector3();
|
Vector3();
|
||||||
/// @brief A new 3-dimensional vector
|
/// @brief A new 3-dimensional vector
|
||||||
@ -88,12 +88,12 @@ struct Vector3 : Vec3 {
|
|||||||
/// @return true if it is identical to the given vector
|
/// @return true if it is identical to the given vector
|
||||||
/// @note This uses float comparison to check equality which may have strange
|
/// @note This uses float comparison to check equality which may have strange
|
||||||
/// effects. Equality on floats should be avoided.
|
/// effects. Equality on floats should be avoided.
|
||||||
bool operator==(const Vector3& v) const;
|
bool operator==(const Vector3 &v) const;
|
||||||
|
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @param v The vector for which you need the length
|
/// @param v The vector for which you need the length
|
||||||
/// @return The vector length
|
/// @return The vector length
|
||||||
static float Magnitude(const Vector3& v);
|
static float Magnitude(const Vector3 &v);
|
||||||
/// @brief The vector length
|
/// @brief The vector length
|
||||||
/// @return The vector length
|
/// @return The vector length
|
||||||
float magnitude() const;
|
float magnitude() const;
|
||||||
@ -103,7 +103,7 @@ struct Vector3 : Vec3 {
|
|||||||
/// @remark The squared length is computationally simpler than the real
|
/// @remark The squared length is computationally simpler than the real
|
||||||
/// length. Think of Pythagoras A^2 + B^2 = C^2. This leaves out the
|
/// length. Think of Pythagoras A^2 + B^2 = C^2. This leaves out the
|
||||||
/// calculation of the squared root of C.
|
/// calculation of the squared root of C.
|
||||||
static float SqrMagnitude(const Vector3& v);
|
static float SqrMagnitude(const Vector3 &v);
|
||||||
/// @brief The squared vector length
|
/// @brief The squared vector length
|
||||||
/// @return The squared vector length
|
/// @return The squared vector length
|
||||||
/// @remark The squared length is computationally simpler than the real
|
/// @remark The squared length is computationally simpler than the real
|
||||||
@ -114,7 +114,7 @@ struct Vector3 : Vec3 {
|
|||||||
/// @brief Convert the vector to a length of 1
|
/// @brief Convert the vector to a length of 1
|
||||||
/// @param v The vector to convert
|
/// @param v The vector to convert
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
static Vector3 Normalize(const Vector3& v);
|
static Vector3 Normalize(const Vector3 &v);
|
||||||
/// @brief Convert the vector to a length of 1
|
/// @brief Convert the vector to a length of 1
|
||||||
/// @return The vector normalized to a length of 1
|
/// @return The vector normalized to a length of 1
|
||||||
Vector3 normalized() const;
|
Vector3 normalized() const;
|
||||||
@ -126,13 +126,13 @@ struct Vector3 : Vec3 {
|
|||||||
/// @brief Subtract a vector from this vector
|
/// @brief Subtract a vector from this vector
|
||||||
/// @param v The vector to subtract from this vector
|
/// @param v The vector to subtract from this vector
|
||||||
/// @return The result of this subtraction
|
/// @return The result of this subtraction
|
||||||
Vector3 operator-(const Vector3& v) const;
|
Vector3 operator-(const Vector3 &v) const;
|
||||||
Vector3 operator-=(const Vector3& v);
|
Vector3 operator-=(const Vector3 &v);
|
||||||
/// @brief Add a vector to this vector
|
/// @brief Add a vector to this vector
|
||||||
/// @param v The vector to add to this vector
|
/// @param v The vector to add to this vector
|
||||||
/// @return The result of the addition
|
/// @return The result of the addition
|
||||||
Vector3 operator+(const Vector3& v) const;
|
Vector3 operator+(const Vector3 &v) const;
|
||||||
Vector3 operator+=(const Vector3& v);
|
Vector3 operator+=(const Vector3 &v);
|
||||||
|
|
||||||
/// @brief Scale the vector using another vector
|
/// @brief Scale the vector using another vector
|
||||||
/// @param v1 The vector to scale
|
/// @param v1 The vector to scale
|
||||||
@ -140,16 +140,16 @@ struct Vector3 : Vec3 {
|
|||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each component of the vector v1 will be multiplied with the
|
/// @remark Each component of the vector v1 will be multiplied with the
|
||||||
/// matching component from the scaling vector v2.
|
/// matching component from the scaling vector v2.
|
||||||
static Vector3 Scale(const Vector3& v1, const Vector3& v2);
|
static Vector3 Scale(const Vector3 &v1, const Vector3 &v2);
|
||||||
/// @brief Scale the vector uniformly up
|
/// @brief Scale the vector uniformly up
|
||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each component of the vector will be multipled with the same
|
/// @remark Each component of the vector will be multipled with the same
|
||||||
/// factor f.
|
/// factor f.
|
||||||
friend Vector3 operator*(const Vector3& v, float f) {
|
friend Vector3 operator*(const Vector3 &v, float f) {
|
||||||
return Vector3(v.x * f, v.y * f, v.z * f);
|
return Vector3(v.x * f, v.y * f, v.z * f);
|
||||||
}
|
}
|
||||||
friend Vector3 operator*(float f, const Vector3& v) {
|
friend Vector3 operator*(float f, const Vector3 &v) {
|
||||||
// return Vector3(f * v.x, f * v.y, f * v.z);
|
// return Vector3(f * v.x, f * v.y, f * v.z);
|
||||||
return Vector3(v.x * f, v.y * f, v.z * f);
|
return Vector3(v.x * f, v.y * f, v.z * f);
|
||||||
}
|
}
|
||||||
@ -158,10 +158,10 @@ struct Vector3 : Vec3 {
|
|||||||
/// @param f The scaling factor
|
/// @param f The scaling factor
|
||||||
/// @return The scaled vector
|
/// @return The scaled vector
|
||||||
/// @remark Each componet of the vector will be divided by the same factor.
|
/// @remark Each componet of the vector will be divided by the same factor.
|
||||||
friend Vector3 operator/(const Vector3& v, float f) {
|
friend Vector3 operator/(const Vector3 &v, float f) {
|
||||||
return Vector3(v.x / f, v.y / f, v.z / f);
|
return Vector3(v.x / f, v.y / f, v.z / f);
|
||||||
}
|
}
|
||||||
friend Vector3 operator/(float f, const Vector3& v) {
|
friend Vector3 operator/(float f, const Vector3 &v) {
|
||||||
// return Vector3(f / v.x, f / v.y, f / v.z);
|
// return Vector3(f / v.x, f / v.y, f / v.z);
|
||||||
return Vector3(v.x / f, v.y / f, v.z / f);
|
return Vector3(v.x / f, v.y / f, v.z / f);
|
||||||
}
|
}
|
||||||
@ -171,31 +171,31 @@ struct Vector3 : Vec3 {
|
|||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The distance between the two vectors
|
/// @return The distance between the two vectors
|
||||||
static float Distance(const Vector3& v1, const Vector3& v2);
|
static float Distance(const Vector3 &v1, const Vector3 &v2);
|
||||||
|
|
||||||
/// @brief The dot product of two vectors
|
/// @brief The dot product of two vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The dot product of the two vectors
|
/// @return The dot product of the two vectors
|
||||||
static float Dot(const Vector3& v1, const Vector3& v2);
|
static float Dot(const Vector3 &v1, const Vector3 &v2);
|
||||||
|
|
||||||
/// @brief The cross product of two vectors
|
/// @brief The cross product of two vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
/// @param v2 The second vector
|
/// @param v2 The second vector
|
||||||
/// @return The cross product of the two vectors
|
/// @return The cross product of the two vectors
|
||||||
static Vector3 Cross(const Vector3& v1, const Vector3& v2);
|
static Vector3 Cross(const Vector3 &v1, const Vector3 &v2);
|
||||||
|
|
||||||
/// @brief Project the vector on another vector
|
/// @brief Project the vector on another vector
|
||||||
/// @param v The vector to project
|
/// @param v The vector to project
|
||||||
/// @param n The normal vecto to project on
|
/// @param n The normal vecto to project on
|
||||||
/// @return The projected vector
|
/// @return The projected vector
|
||||||
static Vector3 Project(const Vector3& v, const Vector3& n);
|
static Vector3 Project(const Vector3 &v, const Vector3 &n);
|
||||||
/// @brief Project the vector on a plane defined by a normal orthogonal to the
|
/// @brief Project the vector on a plane defined by a normal orthogonal to the
|
||||||
/// plane.
|
/// plane.
|
||||||
/// @param v The vector to project
|
/// @param v The vector to project
|
||||||
/// @param n The normal of the plane to project on
|
/// @param n The normal of the plane to project on
|
||||||
/// @return Teh projected vector
|
/// @return Teh projected vector
|
||||||
static Vector3 ProjectOnPlane(const Vector3& v, const Vector3& n);
|
static Vector3 ProjectOnPlane(const Vector3 &v, const Vector3 &n);
|
||||||
|
|
||||||
/// @brief The angle between two vectors
|
/// @brief The angle between two vectors
|
||||||
/// @param v1 The first vector
|
/// @param v1 The first vector
|
||||||
@ -204,15 +204,14 @@ struct Vector3 : Vec3 {
|
|||||||
/// @remark This reterns an unsigned angle which is the shortest distance
|
/// @remark This reterns an unsigned angle which is the shortest distance
|
||||||
/// between the two vectors. Use Vector3::SignedAngle if a signed angle is
|
/// between the two vectors. Use Vector3::SignedAngle if a signed angle is
|
||||||
/// needed.
|
/// needed.
|
||||||
static AngleOf<float> Angle(const Vector3& v1, const Vector3& v2);
|
static AngleOf<float> Angle(const Vector3 &v1, const Vector3 &v2);
|
||||||
/// @brief The signed angle between two vectors
|
/// @brief The signed angle between two vectors
|
||||||
/// @param v1 The starting vector
|
/// @param v1 The starting vector
|
||||||
/// @param v2 The ending vector
|
/// @param v2 The ending vector
|
||||||
/// @param axis The axis to rotate around
|
/// @param axis The axis to rotate around
|
||||||
/// @return The signed angle between the two vectors
|
/// @return The signed angle between the two vectors
|
||||||
static AngleOf<float> SignedAngle(const Vector3& v1,
|
static AngleOf<float> SignedAngle(const Vector3 &v1, const Vector3 &v2,
|
||||||
const Vector3& v2,
|
const Vector3 &axis);
|
||||||
const Vector3& axis);
|
|
||||||
|
|
||||||
/// @brief Lerp (linear interpolation) between two vectors
|
/// @brief Lerp (linear interpolation) between two vectors
|
||||||
/// @param v1 The starting vector
|
/// @param v1 The starting vector
|
||||||
@ -222,11 +221,12 @@ struct Vector3 : Vec3 {
|
|||||||
/// @remark The factor f is unclamped. Value 0 matches the vector *v1*, Value
|
/// @remark The factor f is unclamped. Value 0 matches the vector *v1*, Value
|
||||||
/// 1 matches vector *v2*. Value -1 is vector *v1* minus the difference
|
/// 1 matches vector *v2*. Value -1 is vector *v1* minus the difference
|
||||||
/// between *v1* and *v2* etc.
|
/// between *v1* and *v2* etc.
|
||||||
static Vector3 Lerp(const Vector3& v1, const Vector3& v2, float f);
|
static Vector3 Lerp(const Vector3 &v1, const Vector3 &v2, float f);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace LinearAlgebra
|
} // namespace LinearAlgebra
|
||||||
using namespace LinearAlgebra;
|
} // namespace Passer
|
||||||
|
using namespace Passer::LinearAlgebra;
|
||||||
|
|
||||||
#include "Spherical.h"
|
#include "Spherical.h"
|
||||||
|
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
#if GTEST
|
#if GTEST
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
|
|
||||||
using namespace LinearAlgebra;
|
|
||||||
|
|
||||||
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
||||||
|
|
||||||
TEST(Angle16, Construct) {
|
TEST(Angle16, Construct) {
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
#if GTEST
|
#if GTEST
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
|
|
||||||
using namespace LinearAlgebra;
|
|
||||||
|
|
||||||
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
||||||
|
|
||||||
TEST(Angle8, Construct) {
|
TEST(Angle8, Construct) {
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
#if GTEST
|
#if GTEST
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
#include "Angle.h"
|
#include "Angle.h"
|
||||||
|
|
||||||
using namespace LinearAlgebra;
|
|
||||||
|
|
||||||
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
#define FLOAT_INFINITY std::numeric_limits<float>::infinity()
|
||||||
|
|
||||||
TEST(AngleSingle, Construct) {
|
TEST(AngleSingle, Construct) {
|
||||||
|
@ -34,32 +34,26 @@ TEST(Vector2, FromPolar) {
|
|||||||
EXPECT_FLOAT_EQ(r.y, 0.0F) << "FromPolar(0 0)";
|
EXPECT_FLOAT_EQ(r.y, 0.0F) << "FromPolar(0 0)";
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(Vector2, Magnitude) {
|
TEST(Vector2, Equality) {
|
||||||
Vector2 v = Vector2(1, 2);
|
Vector2 v1 = Vector2(4, 5);
|
||||||
float m = 0;
|
Vector2 v2 = Vector2(1, 2);
|
||||||
|
bool r = false;
|
||||||
|
|
||||||
m = v.magnitude();
|
r = v1 == v2;
|
||||||
EXPECT_FLOAT_EQ(m, 2.236068F) << "v.magnitude 1 2";
|
EXPECT_FALSE(r) << "4 5 == 1 2";
|
||||||
|
|
||||||
m = Vector2::Magnitude(v);
|
v2 = Vector2(4, 5);
|
||||||
EXPECT_FLOAT_EQ(m, 2.236068F) << "Vector2::Magnitude 1 2";
|
r = v1 == v2;
|
||||||
|
EXPECT_TRUE(r) << "4 5 == 1 2";
|
||||||
v = Vector2(-1, -2);
|
|
||||||
m = v.magnitude();
|
|
||||||
EXPECT_FLOAT_EQ(m, 2.236068F) << "v.magnitude -1 -2";
|
|
||||||
|
|
||||||
v = Vector2(0, 0);
|
|
||||||
m = v.magnitude();
|
|
||||||
EXPECT_FLOAT_EQ(m, 0) << "v.magnitude 0 0 ";
|
|
||||||
|
|
||||||
if (std::numeric_limits<float>::is_iec559) {
|
if (std::numeric_limits<float>::is_iec559) {
|
||||||
v = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
v2 = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
||||||
m = v.magnitude();
|
r = v1 == v2;
|
||||||
EXPECT_FLOAT_EQ(m, FLOAT_INFINITY) << "v.magnitude INFINITY INFINITY ";
|
EXPECT_FALSE(r) << "4 5 == INFINITY INFINITY";
|
||||||
|
|
||||||
v = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
v1 = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
||||||
m = v.magnitude();
|
r = v1 == v2;
|
||||||
EXPECT_FLOAT_EQ(m, FLOAT_INFINITY) << "v.magnitude -INFINITY -INFINITY ";
|
EXPECT_FALSE(r) << "-INFINITY -INFINITY == INFINITY INFINITY";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,6 +86,35 @@ TEST(Vector2, SqrMagnitude) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(Vector2, Magnitude) {
|
||||||
|
Vector2 v = Vector2(1, 2);
|
||||||
|
float m = 0;
|
||||||
|
|
||||||
|
m = v.magnitude();
|
||||||
|
EXPECT_FLOAT_EQ(m, 2.236068F) << "v.magnitude 1 2";
|
||||||
|
|
||||||
|
m = Vector2::Magnitude(v);
|
||||||
|
EXPECT_FLOAT_EQ(m, 2.236068F) << "Vector2::Magnitude 1 2";
|
||||||
|
|
||||||
|
v = Vector2(-1, -2);
|
||||||
|
m = v.magnitude();
|
||||||
|
EXPECT_FLOAT_EQ(m, 2.236068F) << "v.magnitude -1 -2";
|
||||||
|
|
||||||
|
v = Vector2(0, 0);
|
||||||
|
m = v.magnitude();
|
||||||
|
EXPECT_FLOAT_EQ(m, 0) << "v.magnitude 0 0 ";
|
||||||
|
|
||||||
|
if (std::numeric_limits<float>::is_iec559) {
|
||||||
|
v = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
||||||
|
m = v.magnitude();
|
||||||
|
EXPECT_FLOAT_EQ(m, FLOAT_INFINITY) << "v.magnitude INFINITY INFINITY ";
|
||||||
|
|
||||||
|
v = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
||||||
|
m = v.magnitude();
|
||||||
|
EXPECT_FLOAT_EQ(m, FLOAT_INFINITY) << "v.magnitude -INFINITY -INFINITY ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
TEST(Vector2, Normalize) {
|
TEST(Vector2, Normalize) {
|
||||||
bool r = false;
|
bool r = false;
|
||||||
|
|
||||||
@ -311,56 +334,6 @@ TEST(Vector2, Divide) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(Vector2, Dot) {
|
|
||||||
Vector2 v1 = Vector2(4, 5);
|
|
||||||
Vector2 v2 = Vector2(1, 2);
|
|
||||||
float f = 0;
|
|
||||||
|
|
||||||
f = Vector2::Dot(v1, v2);
|
|
||||||
EXPECT_FLOAT_EQ(f, 14) << "Dot(4 5, 1 2)";
|
|
||||||
|
|
||||||
v2 = Vector2(-1, -2);
|
|
||||||
f = Vector2::Dot(v1, v2);
|
|
||||||
EXPECT_FLOAT_EQ(f, -14) << "Dot(4 5, -1 -2)";
|
|
||||||
|
|
||||||
v2 = Vector2(0, 0);
|
|
||||||
f = Vector2::Dot(v1, v2);
|
|
||||||
EXPECT_FLOAT_EQ(f, 0) << "Dot(4 5, 0 0)";
|
|
||||||
|
|
||||||
if (std::numeric_limits<float>::is_iec559) {
|
|
||||||
v2 = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
|
||||||
f = Vector2::Dot(v1, v2);
|
|
||||||
EXPECT_FLOAT_EQ(f, FLOAT_INFINITY) << "Dot(4 5, INFINITY INFINITY)";
|
|
||||||
|
|
||||||
v2 = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
|
||||||
f = Vector2::Dot(v1, v2);
|
|
||||||
EXPECT_FLOAT_EQ(f, -FLOAT_INFINITY) << "Dot(4 5, -INFINITY -INFINITY)";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(Vector2, Equality) {
|
|
||||||
Vector2 v1 = Vector2(4, 5);
|
|
||||||
Vector2 v2 = Vector2(1, 2);
|
|
||||||
bool r = false;
|
|
||||||
|
|
||||||
r = v1 == v2;
|
|
||||||
EXPECT_FALSE(r) << "4 5 == 1 2";
|
|
||||||
|
|
||||||
v2 = Vector2(4, 5);
|
|
||||||
r = v1 == v2;
|
|
||||||
EXPECT_TRUE(r) << "4 5 == 1 2";
|
|
||||||
|
|
||||||
if (std::numeric_limits<float>::is_iec559) {
|
|
||||||
v2 = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
|
||||||
r = v1 == v2;
|
|
||||||
EXPECT_FALSE(r) << "4 5 == INFINITY INFINITY";
|
|
||||||
|
|
||||||
v1 = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
|
||||||
r = v1 == v2;
|
|
||||||
EXPECT_FALSE(r) << "-INFINITY -INFINITY == INFINITY INFINITY";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(Vector2, Distance) {
|
TEST(Vector2, Distance) {
|
||||||
Vector2 v1 = Vector2(4, 5);
|
Vector2 v1 = Vector2(4, 5);
|
||||||
Vector2 v2 = Vector2(1, 2);
|
Vector2 v2 = Vector2(1, 2);
|
||||||
@ -388,6 +361,33 @@ TEST(Vector2, Distance) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(Vector2, Dot) {
|
||||||
|
Vector2 v1 = Vector2(4, 5);
|
||||||
|
Vector2 v2 = Vector2(1, 2);
|
||||||
|
float f = 0;
|
||||||
|
|
||||||
|
f = Vector2::Dot(v1, v2);
|
||||||
|
EXPECT_FLOAT_EQ(f, 14) << "Dot(4 5, 1 2)";
|
||||||
|
|
||||||
|
v2 = Vector2(-1, -2);
|
||||||
|
f = Vector2::Dot(v1, v2);
|
||||||
|
EXPECT_FLOAT_EQ(f, -14) << "Dot(4 5, -1 -2)";
|
||||||
|
|
||||||
|
v2 = Vector2(0, 0);
|
||||||
|
f = Vector2::Dot(v1, v2);
|
||||||
|
EXPECT_FLOAT_EQ(f, 0) << "Dot(4 5, 0 0)";
|
||||||
|
|
||||||
|
if (std::numeric_limits<float>::is_iec559) {
|
||||||
|
v2 = Vector2(FLOAT_INFINITY, FLOAT_INFINITY);
|
||||||
|
f = Vector2::Dot(v1, v2);
|
||||||
|
EXPECT_FLOAT_EQ(f, FLOAT_INFINITY) << "Dot(4 5, INFINITY INFINITY)";
|
||||||
|
|
||||||
|
v2 = Vector2(-FLOAT_INFINITY, -FLOAT_INFINITY);
|
||||||
|
f = Vector2::Dot(v1, v2);
|
||||||
|
EXPECT_FLOAT_EQ(f, -FLOAT_INFINITY) << "Dot(4 5, -INFINITY -INFINITY)";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
TEST(Vector2, Angle) {
|
TEST(Vector2, Angle) {
|
||||||
Vector2 v1 = Vector2(4, 5);
|
Vector2 v1 = Vector2(4, 5);
|
||||||
Vector2 v2 = Vector2(1, 2);
|
Vector2 v2 = Vector2(1, 2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user