@next_tutorial{tutorial_widget_pose}
In this tutorial you will learn how to
You can download the code from here . @include viz/samples/launching_viz.cpp
Here is the general structure of the program:
Start a controlled event loop. Once it starts, wasStopped is set to false. Inside the while loop, in each iteration, spinOnce is called to prevent event loop from completely stopping. Inside the while loop, user can execute other statements including those which interact with the window. @code{.cpp} /// Event loop is over when pressed q, Q, e, E /// Start event loop once for 1 millisecond sameWindow.spinOnce(1, true); while(!sameWindow.wasStopped()) {
/// Interact with window
/// Event loop for 1 millisecond
sameWindow.spinOnce(1, true);
} @endcode
Here is the result of the program.