Skip to content
Snippets Groups Projects
Commit d0aac6ae authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

ENH: Adds print for camera parameters in default KeyboardSceneControl

parent 5e7eddbc
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@
=========================================================================*/
#include "imstkKeyboardSceneControl.h"
#include "imstkCamera.h"
#include "imstkLogger.h"
#include "imstkModuleDriver.h"
#include "imstkScene.h"
......@@ -45,6 +46,7 @@ KeyboardSceneControl::printControls()
LOG(INFO) << " | d/D - toggle debug/simulation mode";
LOG(INFO) << " | p/P - toggle visual/physics updates/second and task times display";
LOG(INFO) << " | r/R - reset the simulation";
LOG(INFO) << " | n/N - print camera pose of the active scene's camera";
LOG(INFO) << "----------------------------------------------------------------------";
}
......@@ -142,6 +144,10 @@ KeyboardSceneControl::OnKeyPress(const char key)
{
sceneManager->getActiveScene()->reset();
}
else if (key == 'n' || key == 'N')
{
sceneManager->getActiveScene()->getActiveCamera()->print();
}
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment