66 inline double MYRANDG(
double scale,
double shift = 0)
95 pps[0] = base + pDist;
96 pps[1] = base +
CPose3D(0, 0, 0, 0, -
M_PI / 2, 0) + pDist;
97 pps[2] = base +
CPose3D(0, 0, 0, -
M_PI / 2, 0, 0) + pDist;
98 pps[3] = base +
CPose3D(0, 0, 0,
M_PI / 2, 0, 0) + pDist;
99 for (
size_t i = 0; i < 4; i++)
101 base.
x(), base.
y(), base.z(), pps[i].
x(), pps[i].
y(), pps[i].z());
102 lines->setLineWidth(5);
103 lines->setColor(0, 0, 1);
124 for (
size_t i = 0; i < 5; i++)
127 CPolyhedron::CreateRandomPolyhedron(
MYRANDG(2, 2));
139 for (
size_t i = 0; i < 3; i++) md(i, i) =
MYRANDG(8.0, 1.0);
140 for (
size_t i = 0; i < 3; i++)
142 size_t ii = (i + 1) % 3;
143 md(i, ii) = md(ii, i) =
MYRANDG(sqrt(md(i, i) * md(ii, ii)));
145 ell->setCovMatrix(md);
146 configRandom(std::dynamic_pointer_cast<CRenderizable>(ell));
153 window.setPos(10, 10);
154 std::this_thread::sleep_for(20ms);
158 CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
160 scene1->insert(plane1);
161 scene1->insert(CAxis::Create(-5, -5, -5, 5, 5, 5, 2.5, 3,
true));
164 scene1->insert(world);
169 CAngularObservationMesh::trace2DSetOfRays(
170 scene1, basePose, aom,
171 CAngularObservationMesh::TDoubleRange::CreateFromAmount(
173 CAngularObservationMesh::TDoubleRange::CreateFromAperture(
175 cout <<
"Elapsed time: " << t.
Tac() <<
" seconds.\n";
176 aom->setColor(0, 1, 0);
177 aom->setWireframe(
true);
181 aom->getTracedRays(traced);
182 traced->setLineWidth(1.5);
183 traced->setColor(1, 0, 0);
185 scene1->insert(traced);
186 scene1->insert(guides);
197 point->setColor(0, 1, 0);
198 point->setPose(basePose);
199 scene1->insert(point);
201 window2.setPos(660, 10);
202 std::this_thread::sleep_for(20ms);
203 window.get3DSceneAndLock() = scene1;
204 window.unlockAccess3DScene();
205 window.setCameraElevationDeg(25.0f);
209 CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
211 scene2->insert(plane2);
212 scene2->insert(CAxis::Create(-5, -5, -5, 5, 5, 5, 2.5, 3,
true));
213 window2.unlockAccess3DScene();
214 window2.setCameraElevationDeg(25.0f);
227 catch (
const exception& e)
229 cout <<
"Error: " << e.what() <<
'.' << endl;
235 cout <<
"Unknown Error.\n";
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
A mesh built from a set of 2D laser scan observations.
const float RANDOM_POSE_DISTANCE
double MYRANDG(double scale, double shift=0)
void configRandom(const CRenderizable::Ptr &obj)
Call configRandom given the address of an object and assign random pose and color to it...
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
void guideLines(const CPose3D &base, CSetOfLines::Ptr &lines, float dist)
A high-performance stopwatch, with typical resolution of nanoseconds.
void generateObjects(CSetOfObjects::Ptr &world)
return_t drawUniform(const double Min, const double Max)
Generate a uniformly distributed pseudo-random number using the MT19937 algorithm, scaled to the selected range.
This base provides a set of functions for maths stuff.
double x() const
Common members of all points & poses classes.
A class used to store a 3D point.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
const size_t HOW_MANY_YAWS
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
The namespace for 3D scene representation and rendering.
double MYRAND1(size_t prec=64)
Classes for creating GUI windows for 2D and 3D visualization.
void Tic() noexcept
Starts the stopwatch.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
const size_t HOW_MANY_PITCHS
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
CMatrixDynamic< double > CMatrixDouble
Declares a matrix of double numbers (non serializable).