- Timestamp:
- 12/06/07 18:01:22 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp
r7597 r7608 238 238 double yaw2step = 0.1; 239 239 #endif 240 241 std::cout << std::endl << "Starting " << __FUNCTION__ << ", it can take a while ..." << std::endl;240 241 std::cout << std::endl << "Starting testGetQuatFromMatrix, it can take a while ..." << std::endl; 242 242 243 243 osg::Timer_t tstart, tstop; … … 293 293 (fabs(out_quat1.z()-out_quat2.z())) > eps || 294 294 (fabs(out_quat1.w()-out_quat2.w())) > eps) { 295 std::cout << __FUNCTION__ << "problem at: \n"295 std::cout << "testGetQuatFromMatrix problem at: \n" 296 296 << " r1=" << rol1 297 297 << " p1=" << pit1 … … 311 311 tstop = osg::Timer::instance()->tick(); 312 312 double duration = osg::Timer::instance()->delta_s(tstart,tstop); 313 std::cout << "Time for " << __FUNCTION__ << "with " << count << " iterations: " << duration << std::endl << std::endl;313 std::cout << "Time for testGetQuatFromMatrix with " << count << " iterations: " << duration << std::endl << std::endl; 314 314 } 315 315
