it seems that there is a problem with the matrix arithmetic,
Niko can you give us your point of view :
http://irrlicht.sourceforge.net/phpBB2/ ... php?t=3658
problem with matrix4::rotateVect
-
- Posts: 63
- Joined: Thu Aug 05, 2004 9:40 am
- Location: Germany
I spotted a possible Problem in matrix4.h
Line 00189
should be
Line 00224
should be
Line 00189
should be
Code: Select all
00189 newMatrix[11] = m1[3]*m2[8] + m1[7]*m2[9] + m1[11]*m2[10] + m1[15]*m2[11];
should be
Code: Select all
00224 m3[11] = m1[3]*m2[8] + m1[7]*m2[9] + m1[11]*m2[10] + m1[15]*m2[11];