Vector.cpp 760 B

123456789101112131415161718192021222324
  1. #include <cmath>
  2. #include "math/Vector.h"
  3. template<>
  4. Vector<3>& Vector<3>::setAngles(float lengthAngle, float widthAngle) {
  5. lengthAngle *= (M_PI / 180.0f);
  6. widthAngle *= (M_PI / 180.0f);
  7. float sinWidth = sinf(widthAngle);
  8. float cosWidth = cosf(widthAngle);
  9. float sinLength = sinf(lengthAngle);
  10. float cosLength = cosf(lengthAngle);
  11. return *this = Vector<3>(cosWidth * cosLength, sinWidth, -sinLength * cosWidth);
  12. }
  13. template<>
  14. Vector<3> Vector<3>::cross(const Vector<3>& other) const {
  15. return Vector<3>(values[1] * other.values[2] - values[2] * other.values[1],
  16. values[2] * other.values[0] - values[0] * other.values[2],
  17. values[0] * other.values[1] - values[1] * other.values[0]);
  18. }