Vec2.cpp 448 B

12345678910111213141516171819202122232425262728293031323334
  1. #include "Vec2.h"
  2. namespace TLAC::Utilities
  3. {
  4. Vec2::Vec2()
  5. {
  6. };
  7. Vec2::Vec2(float x, float y) : X(x), Y(y)
  8. {
  9. };
  10. Vec2 Vec2::operator+(Vec2 value)
  11. {
  12. return Vec2(X + value.X, Y + value.Y);
  13. }
  14. void Vec2::operator+=(const Vec2 &value)
  15. {
  16. X += value.X;
  17. Y += value.Y;
  18. }
  19. Vec2 Vec2::operator-(Vec2 value)
  20. {
  21. return Vec2(X - value.X, Y - value.Y);
  22. }
  23. void Vec2::operator-=(const Vec2 &value)
  24. {
  25. X -= value.X;
  26. Y -= value.Y;
  27. }
  28. }