Wm4Matrix3.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "Wm4FoundationPCH.h"
00018 #include "Wm4Matrix3.h"
00019 using namespace Wm4;
00020
00021 template<> const Matrix3<float> Matrix3<float>::ZERO(
00022 0.0f,0.0f,0.0f,
00023 0.0f,0.0f,0.0f,
00024 0.0f,0.0f,0.0f);
00025 template<> const Matrix3<float> Matrix3<float>::IDENTITY(
00026 1.0f,0.0f,0.0f,
00027 0.0f,1.0f,0.0f,
00028 0.0f,0.0f,1.0f);
00029
00030 template<> const Matrix3<double> Matrix3<double>::ZERO(
00031 0.0,0.0,0.0,
00032 0.0,0.0,0.0,
00033 0.0,0.0,0.0);
00034 template<> const Matrix3<double> Matrix3<double>::IDENTITY(
00035 1.0,0.0,0.0,
00036 0.0,1.0,0.0,
00037 0.0,0.0,1.0);