smgr->init();
sgr = smgr->find("default", true);
smgr->set_volume(0.9);
- smgr->set_position_geod( SGGeod::fromDeg(0,0) );
smgr->activate();
printf("default position and orientation\n");
sleep(1);
printf("source at lat,lon = (10,-10), listener at (9.99,-9.99)\n");
- sample1->set_position_geod( SGGeod::fromDeg(10,-10) );
- smgr->set_position( SGGeod::fromDeg(9.99,-9.99) );
+ sample1->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(10,-10)) );
+ smgr->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(9.99,-9.99)) );
sample1->play_looped();
smgr->update(1.0);
printf("playing sample\n");