From 2ffd151a1fb076e705cc323dfe4aad7242247bd5 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Wed, 10 Jul 2013 14:40:45 -0700 Subject: [PATCH] Ryan likes the eyelids starting at forty degrees. --- interface/src/Head.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/Head.cpp b/interface/src/Head.cpp index 6bf6c65341..39f0da3ca9 100644 --- a/interface/src/Head.cpp +++ b/interface/src/Head.cpp @@ -627,7 +627,7 @@ void Head::renderEyeBalls() { glm::vec3 rotationAxis = glm::axis(orientation); glRotatef(glm::angle(orientation), rotationAxis.x, rotationAxis.y, rotationAxis.z); glScalef(EYELID_RADIUS, EYELID_RADIUS, EYELID_RADIUS); - glRotatef(-90 * _leftEyeBlink, 1, 0, 0); + glRotatef(-40 - 50 * _leftEyeBlink, 1, 0, 0); Application::getInstance()->getGeometryCache()->renderHemisphere(15, 10); glRotatef(180 * _leftEyeBlink, 1, 0, 0); Application::getInstance()->getGeometryCache()->renderHemisphere(15, 10); @@ -640,7 +640,7 @@ void Head::renderEyeBalls() { glm::vec3 rotationAxis = glm::axis(orientation); glRotatef(glm::angle(orientation), rotationAxis.x, rotationAxis.y, rotationAxis.z); glScalef(EYELID_RADIUS, EYELID_RADIUS, EYELID_RADIUS); - glRotatef(-90 * _rightEyeBlink, 1, 0, 0); + glRotatef(-40 - 50 * _rightEyeBlink, 1, 0, 0); Application::getInstance()->getGeometryCache()->renderHemisphere(15, 10); glRotatef(180 * _rightEyeBlink, 1, 0, 0); Application::getInstance()->getGeometryCache()->renderHemisphere(15, 10);