]> git.mxchange.org Git - simgear.git/commitdiff
.. and remove some debugging code
authorehofman <ehofman>
Thu, 22 Oct 2009 12:11:06 +0000 (12:11 +0000)
committerTim Moore <timoore@redhat.com>
Thu, 22 Oct 2009 20:52:05 +0000 (22:52 +0200)
simgear/sound/sample_openal.cxx

index 2ec3c96d132b9fd43360a80af35e5f3a406a83d3..91b08527b712554d44d50b8b11f2247fb3daf15e 100644 (file)
@@ -183,12 +183,9 @@ void SGSoundSample::set_position( const SGGeod& pos ) {
 void SGSoundSample::update_absolute_position() {
     SGQuatd orient = SGQuatd::fromLonLat(_base_pos) * _orientation;
     _orivec = -toVec3f(orient.rotate(-SGVec3d::e1()));
-printf("ori: %f %f %f\n", _orivec[0], _orivec[1], _orivec[2]);
-printf("vel: %f %f %f\n", _velocity[0], _velocity[1], _velocity[2]);
 
     orient = SGQuatd::fromRealImag(0, _relative_pos) * _orientation;
     _absolute_pos = -SGVec3d::fromGeod(_base_pos); // -orient.rotate(SGVec3d::e1());
-//printf("pos: %f %f %f\n", _absolute_pos[0], _absolute_pos[1], _absolute_pos[2]);
 }
 
 string SGSoundSample::random_string() {