43 vi->setViewportPosition(0.7, 0.05, 0.28, 0.28);
44 vi->setCloneView(
"main");
45 vi->setTransparent(
true);
46 vi->getCamera().setAzimuthDegrees(45);
47 vi->getCamera().setElevationDegrees(45);
48 vi->getCamera().setZoomDistance(10);
54 vi->setViewportPosition(
58 vi->setCloneView(
"main");
59 vi->setTransparent(
false);
60 vi->getCamera().setAzimuthDegrees(-95);
61 vi->getCamera().setElevationDegrees(30);
62 vi->getCamera().setZoomDistance(8);
70 vi->setViewportPosition(0, 0, 0.3, 0.3);
71 vi->setTransparent(
true);
73 vi->getCamera().setAzimuthDegrees(0);
74 vi->getCamera().setElevationDegrees(90);
75 vi->getCamera().setZoomDistance(5);
76 vi->getCamera().setOrthogonal(
true);
85 opengl::CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
86 obj->setColor(0.8f, 0.8f, 0.8f);
87 theScene->insert(obj);
93 obj->enableTickMarks();
94 obj->setAxisLimits(-10, -10, -10, 10, 10, 10);
95 theScene->insert(obj);
100 obj->setWireframe(
false);
101 obj->setColor(1, 0, 0);
102 obj->setLineWidth(3.0);
103 obj->setPose(
TPose3D(10, 0, 0, 0.2, 0.3, 0.1));
104 theScene->insert(obj);
109 obj->setColor(0, 0, 1);
110 obj->setRadius(0.3f);
111 obj->setLocation(0, 0, 1);
112 obj->setName(
"ball_1");
113 theScene->insert(obj);
117 obj->setColor(1, 0, 0);
118 obj->setRadius(0.3f);
119 obj->setLocation(-1, -1, 1);
120 obj->setName(
"ball_2");
121 theScene->insert(obj);
126 obj->setColor(0, 1, 0);
128 obj->setLocation(0, 0, 0);
129 obj->setName(
"USER_MOUSE_PICK");
130 theScene->insert(obj);
134 win.unlockAccess3DScene();
139 win.addTextMessage(0.01, 0.85,
"This is a 2D message", 0 , fp);
141 win.setCameraElevationDeg(25.0f);
145 cout <<
"Control with mouse or keyboard. Valid keys:" << endl;
146 cout <<
" ESC -> Exit" << endl;
147 cout <<
" Left/right cursor arrow -> Camera azimuth" << endl;
148 cout <<
" P -> Enable / disable 'place object' " 154 bool placeMode =
false;
159 while (!
end &&
win.isOpen())
161 const double t = timer.
Tac();
167 const double W1 = 5.0, Q1 = 3.3;
170 R1 * cos(W1 * t) * sin(Q1 * t), R1 * sin(W1 * t),
171 R1 * cos(W1 * t) * cos(Q1 * t));
174 const double W2 = 1.3, Q2 = 7.2;
177 R2 * cos(W2 * t) * sin(Q2 * t), R2 * sin(W2 * t),
178 R2 * cos(W2 * t) * cos(Q2 * t));
189 "ball#1 pos: %.02f %.02f %.02f ", obj1->getPoseX(),
190 obj1->getPoseY(), obj1->getPoseZ()),
204 int mouse_x, mouse_y;
206 win.getLastMousePosition(
211 theScene->getViewport(
"main")->get3DRayForPixelCoord(
212 mouse_x, mouse_y, ray);
229 theScene->getByName(
"USER_MOUSE_PICK")
230 ->setLocation(inters_pt.
x, inters_pt.
y, inters_pt.
z);
235 win.unlockAccess3DScene();
239 std::this_thread::sleep_for(20ms);
245 int key =
win.getPushedKey(&kmods);
247 "Key pushed: %c (%i) - modifiers: 0x%04X\n",
char(key), key,
253 win.setCameraAzimuthDeg(
win.getCameraAzimuthDeg() + 5);
255 win.setCameraAzimuthDeg(
win.getCameraAzimuthDeg() - 5);
257 if (key ==
'p' || key ==
'P')
259 placeMode = !placeMode;
260 win.setCursorCross(placeMode);
277 catch (
const std::exception& e)
284 printf(
"Untyped exception!!");
double Tac() noexcept
Stops the stopwatch.
static Ptr Create(Args &&... args)
std::string std::string format(std::string_view fmt, ARGS &&... args)
A description of a bitmapped or vectorized text font.
A high-performance stopwatch, with typical resolution of nanoseconds.
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Standard object for storing any 3D lightweight object.
std::string vfont_name
Vectorized font name ("sans","mono","serif")
This base provides a set of functions for maths stuff.
3D Plane, represented by its equation
TPoint3D_< double > TPoint3D
Lightweight 3D point.
mrpt::gui::CDisplayWindow3D::Ptr win
bool getPoint(TPoint3D &p) const
Gets the content as a point, returning false if the type is not adequate.
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.
void Tic() noexcept
Starts the stopwatch.
std::string dateTimeLocalToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (in local time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
bool intersect(const TSegment3D &s1, const TSegment3D &s2, TObject3D &obj)
Gets the intersection between two 3D segments.
float vfont_scale
Size of characters [pixels].
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
3D line, represented by a base point and a director vector.