matrix44.h:

- removed Visual Studio warnings
This commit is contained in:
granzuglia 2014-08-09 10:06:34 +00:00
parent b806f2c7d9
commit cb015f4a5c
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public:
void FromEigenMatrix(const EigenMatrix44Type & m){
for(int i = 0; i < 4; i++)
for(int j = 0; j < 4; j++)
ElementAt(i,j)=m(i,j);
ElementAt(i,j)=T(m(i,j));
}
void FromEulerAngles(T alpha, T beta, T gamma);