00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "Wm4FoundationPCH.h"
00018 #include "Wm4Matrix4.h"
00019 using namespace Wm4;
00020
00021 template<> const Matrix4<float> Matrix4<float>::ZERO(
00022 0.0f,0.0f,0.0f,0.0f,
00023 0.0f,0.0f,0.0f,0.0f,
00024 0.0f,0.0f,0.0f,0.0f,
00025 0.0f,0.0f,0.0f,0.0f);
00026 template<> const Matrix4<float> Matrix4<float>::IDENTITY(
00027 1.0f,0.0f,0.0f,0.0f,
00028 0.0f,1.0f,0.0f,0.0f,
00029 0.0f,0.0f,1.0f,0.0f,
00030 0.0f,0.0f,0.0f,1.0f);
00031
00032 template<> const Matrix4<double> Matrix4<double>::ZERO(
00033 0.0,0.0,0.0,0.0,
00034 0.0,0.0,0.0,0.0,
00035 0.0,0.0,0.0,0.0,
00036 0.0,0.0,0.0,0.0);
00037 template<> const Matrix4<double> Matrix4<double>::IDENTITY(
00038 1.0,0.0,0.0,0.0,
00039 0.0,1.0,0.0,0.0,
00040 0.0,0.0,1.0,0.0,
00041 0.0,0.0,0.0,1.0);