diff --git a/interface/src/Head.cpp b/interface/src/Head.cpp index f8e89a2c21..b5afb1bd01 100644 --- a/interface/src/Head.cpp +++ b/interface/src/Head.cpp @@ -118,13 +118,13 @@ void Head::setLooking(bool looking) { void Head::calculateGeometry(bool lookingInMirror) { //generate orientation directions based on Euler angles... - float pitch = -_pitch; + float pitch = _pitch; float yaw = -_yaw; - float roll = _roll; + float roll = -_roll; if (lookingInMirror) { yaw = _yaw; - roll = -_roll; + roll = _roll; } _orientation.setToPitchYawRoll