.. and remove some debugging code

This commit is contained in:
ehofman 2009-10-22 12:11:06 +00:00 committed by Tim Moore
parent 6a7b885891
commit 5f9befebae

View 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() {