remove a debug line from setHeadFromGyros

This commit is contained in:
Stephen Birarda 2013-05-22 16:50:17 -07:00
parent a1b556d6a2
commit 9657265c24

View file

@ -1201,7 +1201,6 @@ void Avatar::setHeadFromGyros(glm::vec3* eulerAngles, glm::vec3* angularVelocity
angles += (*angularVelocity) * deltaTime;
// Smooth to slowly follow absolute values
angles = ((1.f - deltaTime / smoothingTime) * angles) + (deltaTime / smoothingTime) * (*eulerAngles);
printf("Setting head from gyros!\n");
_head.setYaw (angles.x);
_head.setPitch(angles.y);
_head.setRoll (angles.z);