CmVector3.cpp 301 B

123456789101112
  1. #include "CmVector3.h"
  2. #include "CmMath.h"
  3. namespace BansheeEngine
  4. {
  5. const Vector3 Vector3::ZERO(0, 0, 0);
  6. const Vector3 Vector3::ONE(1, 1, 1);
  7. const Vector3 Vector3::UNIT_X(1, 0, 0);
  8. const Vector3 Vector3::UNIT_Y(0, 1, 0);
  9. const Vector3 Vector3::UNIT_Z(0, 0, 1);
  10. }