00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "vector3.h"
00018
00019 namespace NUM
00020 {
00021
00022
00023 template<> const Vector3<dbl> Vector3<dbl>::UX(1,0,0);
00024 template<> const Vector3<dbl> Vector3<dbl>::UY(0,1,0);
00025 template<> const Vector3<dbl> Vector3<dbl>::UZ(0,0,1);
00026 template<> const Vector3<dbl> Vector3<dbl>::Null(0,0,0);
00027
00028
00029 template<> const Vector3<flt> Vector3<flt>::UX(1,0,0);
00030 template<> const Vector3<flt> Vector3<flt>::UY(0,1,0);
00031 template<> const Vector3<flt> Vector3<flt>::UZ(0,0,1);
00032 template<> const Vector3<flt> Vector3<flt>::Null(0,0,0);
00033
00034 }