Skip to content

Commit 001eb46

Browse files
committed
Merge branch 'develop'
2 parents 6141f89 + 02f3ac4 commit 001eb46

16 files changed

+9147
-4189
lines changed

apps/GridmapNavSimul/gridmapSimulMain.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ CPose2D lastOdo, pose_start;
131131
bool we_are_closing = false;
132132
long decimation = 1;
133133

134-
mrpt::opengl::CSetOfObjects::Ptr gl_grid;
134+
auto gl_grid = mrpt::opengl::CSetOfObjects::Create();
135+
135136
mrpt::opengl::CSetOfObjects::Ptr gl_robot;
136137
mrpt::opengl::CPlanarLaserScan::Ptr gl_scan;
137138
mrpt::opengl::CPointCloud::Ptr gl_path_GT;
@@ -652,7 +653,11 @@ gridmapSimulFrame::~gridmapSimulFrame()
652653
//*)
653654
}
654655

655-
void gridmapSimulFrame::update_grid_map_3d() { gl_grid = the_grid.getVisualization(); }
656+
void gridmapSimulFrame::update_grid_map_3d()
657+
{
658+
gl_grid->clear();
659+
gl_grid->insert(the_grid.getVisualization());
660+
}
656661

657662
void gridmapSimulFrame::OnbtnQuitClick(wxCommandEvent& event)
658663
{

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# version format
2-
version: 2.14.4-{branch}-build{build}
2+
version: 2.14.5-{branch}-build{build}
33

44
os: Visual Studio 2019
55

doc/source/doxygen-docs/changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
\page changelog Change Log
22

3+
# Version 2.14.5: Released Nov 4th, 2024
4+
- Upgraded nanoflann to v1.6.2 (fixes a potential bug).
5+
- Debian files:
6+
- Fix appstreamcli warnings in metadata XML files.
7+
- Changes in libraries:
8+
- \ref mrpt_expr_grp
9+
- ExprTk updated to latest version (https://www.partow.net/programming/exprtk/exprtk_release_notes_v0.0.3.txt).
10+
- BUG FIXES:
11+
- mrpt::maps::CPointsMapXYZIRT::getPointRGB() now handles the case of no intensity without throwing, fixing the visualization of such clouds through mrpt::opengl::CPointCloudColoured::loadFromPointsMap().
12+
- GridmapNavSimul: Loading a different gridmap won't update the map visualization.
13+
314
# Version 2.14.4: Released Oct 19th, 2024
415
- BUG FIXES:
516
- mrpt::nav::CAbstractPTGBasedReactive: Missing heading information in recently-added TP-Space targets as TPose2D.

0 commit comments

Comments
 (0)