From 63cee4b2848f0aa56d2dac8542c4b91666a15a38 Mon Sep 17 00:00:00 2001 From: Jeffrey Ventrella Date: Wed, 1 May 2013 15:43:15 -0700 Subject: [PATCH] fixed comment on Eve position --- eve/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eve/src/main.cpp b/eve/src/main.cpp index c451c0f7bc..73f2c8b72e 100644 --- a/eve/src/main.cpp +++ b/eve/src/main.cpp @@ -114,7 +114,7 @@ int main(int argc, const char* argv[]) { // pick a random point inside a 10x10 grid eve.setPosition(glm::vec3(randFloatInRange(-RANDOM_POSITION_MAX_DIMENSION, RANDOM_POSITION_MAX_DIMENSION), - 0.32, + 0.32, // this is the same as the pelvis standing height (as of 4/26/13) randFloatInRange(-RANDOM_POSITION_MAX_DIMENSION, RANDOM_POSITION_MAX_DIMENSION))); // face any instance of eve down the z-axis @@ -122,7 +122,7 @@ int main(int argc, const char* argv[]) { // put her hand out so somebody can shake it eve.setHandPosition(glm::vec3(eve.getPosition()[0] - 0.2, - 0.2, // this is the same as the pelvis standing height (as of 4/26/13) + 0.2, eve.getPosition()[2] + 0.1)); // read eve's audio data AudioInjector eveAudioInjector("/etc/highfidelity/eve/resources/eve.raw");