37 vi->setViewportPosition(0.7, 0.05, 0.28, 0.28);
38 vi->setCloneView(
"main");
39 vi->setTransparent(
true);
40 vi->getCamera().setAzimuthDegrees(45);
41 vi->getCamera().setElevationDegrees(45);
42 vi->getCamera().setZoomDistance(10);
49 opengl::CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
50 obj->setColor(0.4f, 0.4f, 0.4f);
51 theScene->insert(obj);
57 obj->enableTickMarks();
58 obj->setAxisLimits(-10, -10, -10, 10, 10, 10);
59 theScene->insert(obj);
64 obj->setWireframe(
false);
65 obj->setColor(1, 0, 0);
66 obj->setLineWidth(3.0);
68 theScene->insert(obj);
73 obj->setColor(0, 0, 1);
75 obj->setLocation(0, 0, 1);
76 obj->setName(
"ball_1");
77 theScene->insert(obj);
81 obj->setColor(1, 0, 0);
83 obj->setLocation(-1, -1, 1);
84 obj->setName(
"ball_2");
85 theScene->insert(obj);
90 obj->setColor(0, 1, 0);
92 obj->setLocation(0, 0, 0);
93 obj->setName(
"USER_MOUSE_PICK");
94 theScene->insert(obj);
98 win.unlockAccess3DScene();
100 win.captureImagesStart();
103 win.addTextMessage(0.05, 0.05,
"This is a 2D message");
105 win.setCameraElevationDeg(25.0f);
109 cout <<
"Control with mouse or keyboard. Valid keys:" << endl;
110 cout <<
" ESC -> Exit" << endl;
111 cout <<
" Left/right cursor arrow -> Camera azimuth" << endl;
119 while (!
end &&
win.isOpen())
126 obj1->getPoseX() + cos(obj1->getPoseY() / 2) * 0.05,
127 obj1->getPoseY() - sin(obj1->getPoseX() / 2) * 0.09,
128 obj1->getPoseZ() - sin(obj1->getPoseX() / 2) * 0.08);
130 obj1 = theScene->getByName(
"ball_2");
132 obj1->getPoseX() + cos(obj1->getPoseY() / 2) * 0.05,
133 obj1->getPoseY() - sin(obj1->getPoseX() / 2) * 0.09,
134 obj1->getPoseZ() - sin(obj1->getPoseX() / 2) * 0.08);
139 "ball#1 pos: %.02f %.02f %.02f ", obj1->getPoseX(),
140 obj1->getPoseY(), obj1->getPoseZ()),
145 win.unlockAccess3DScene();
149 std::this_thread::sleep_for(10ms);
156 const string s =
format(
"GRAB_%06i.png", ++i);
158 printf(
"Saved frame image to: %s \r", s.c_str());
169 int key =
win.getPushedKey(&kmods);
171 "Key pushed: %c (%i) - modifiers: 0x%04X\n",
char(key), key,
177 win.setCameraAzimuthDeg(
win.getCameraAzimuthDeg() + 5);
179 win.setCameraAzimuthDeg(
win.getCameraAzimuthDeg() - 5);
195 catch (
const std::exception& e)
202 printf(
"Untyped exception!!");
std::string std::string format(std::string_view fmt, ARGS &&... args)
A description of a bitmapped or vectorized text font.
mrpt::gui::CDisplayWindow3D::Ptr win
const_iterator end() const
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
An RGBA color - floats in the range [0,1].
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
The namespace for 3D scene representation and rendering.
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Classes for creating GUI windows for 2D and 3D visualization.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.