BsVector2.cpp 573 B

12345678910111213
  1. //__________________________ Banshee Project - A modern game development toolkit _________________________________//
  2. //_____________________________________ www.banshee-project.com __________________________________________________//
  3. //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
  4. #include "BsVector2.h"
  5. #include "BsMath.h"
  6. namespace BansheeEngine
  7. {
  8. const Vector2 Vector2::ZERO(0, 0);
  9. const Vector2 Vector2::ONE(1, 1);
  10. const Vector2 Vector2::UNIT_X(1, 0);
  11. const Vector2 Vector2::UNIT_Y(0, 1);
  12. }