|
From: Mike D. <o3d...@us...> - 2004-08-08 13:26:21
|
Update of /cvsroot/grappelmann/spaceplane In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20265 Modified Files: model_loader.cpp Log Message: - now loads x3d files Index: model_loader.cpp =================================================================== RCS file: /cvsroot/grappelmann/spaceplane/model_loader.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** model_loader.cpp 25 Jul 2004 10:35:59 -0000 1.4 --- model_loader.cpp 8 Aug 2004 13:26:13 -0000 1.5 *************** *** 292,298 **** --- 292,302 ---- rotationSize = rotationElements[3]; + cout << "rotation size [" << rotationSize << "] x [" << rotation.m_x << "] y [" << rotation.m_y << "] z [" << rotation.m_z << "]" << endl; + translation.m_x = translationElements[0]; translation.m_y = translationElements[1]; translation.m_z = translationElements[2]; + + cout << "translation x [" << translation.m_x << "] y [" << translation.m_y << "] z [" << translation.m_z << "]" << endl; } *************** *** 507,510 **** --- 511,517 ---- /* $Log$ + Revision 1.5 2004/08/08 13:26:13 o3dozone + - now loads x3d files + Revision 1.4 2004/07/25 10:35:59 o3dozone - added material and transform nodes |