From 57fb1a1dd49d353e421a1e59115e42329df7b8c6 Mon Sep 17 00:00:00 2001 From: Joakim Kilby Date: Tue, 16 Jun 2015 08:20:25 +0200 Subject: [PATCH] changed default scene from NH to standard scene and commented out a printf. --- openspace.cfg | 2 +- src/interaction/remotecontroller.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openspace.cfg b/openspace.cfg index 7b156a7b68..ace1740b8f 100644 --- a/openspace.cfg +++ b/openspace.cfg @@ -7,7 +7,7 @@ return { -- Sets the scene that is to be loaded by OpenSpace. A scene file is a description -- of all entities that will be visible during an instance of OpenSpace - Scene = "${OPENSPACE_DATA}/scene/default_nh.scene", + Scene = "${OPENSPACE_DATA}/scene/default.scene", Paths = { SGCT = "${BASE_PATH}/config/sgct", diff --git a/src/interaction/remotecontroller.cpp b/src/interaction/remotecontroller.cpp index 7d770ebb72..6417a8226b 100644 --- a/src/interaction/remotecontroller.cpp +++ b/src/interaction/remotecontroller.cpp @@ -52,7 +52,7 @@ namespace interaction { std::string write = std::to_string(kf._position.vec4().x) + "\t" + std::to_string(kf._position.vec4().y) + "\t" + std::to_string(kf._position.vec4().z) + "\t" + std::to_string(kf._position.vec4().w) + "\n"; //write += - printf("%s", write.c_str()); + //printf("%s", write.c_str()); } void RemoteController::sendKeyFrame(){