Lines 284 and 285
Currently:
_currentTiltAngle += (_tiltAngle - _currentTiltAngle)/(steps + 1);
_currentPanAngle += (_panAngle - _currentPanAngle)/(steps + 1);
Should be:
_currentTiltAngle += (_tiltAngle - _currentTiltAngle)/steps;
_currentPanAngle += (_panAngle - _currentPanAngle)/steps;
I would commit this to github, but I couldn’t get things setup properly.