Vector.cpp 804 B

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