2
0

BsVector3.cpp 640 B

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