Wm4Matrix2.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 "Wm4Matrix2.h"
00019 using namespace Wm4;
00020
00021 template<> const Matrix2<float> Matrix2<float>::ZERO(
00022 0.0f,0.0f,
00023 0.0f,0.0f);
00024 template<> const Matrix2<float> Matrix2<float>::IDENTITY(
00025 1.0f,0.0f,
00026 0.0f,1.0f);
00027
00028 template<> const Matrix2<double> Matrix2<double>::ZERO(
00029 0.0,0.0,
00030 0.0,0.0);
00031 template<> const Matrix2<double> Matrix2<double>::IDENTITY(
00032 1.0,0.0,
00033 0.0,1.0);