Skip to content

Commit 6141f89

Browse files
committed
Merge branch 'develop'
2 parents c6348a6 + 9186b4b commit 6141f89

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

apps/rosbag2rawlog/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
if(NOT TARGET ros1bridge)
3-
return()
3+
# Try to find it as an external project (needed for mrpt_ros package)
4+
find_package(ros1bridge QUIET)
5+
if(NOT TARGET ros1bridge)
6+
return()
7+
endif()
48
endif()
59

610
project(rosbag2rawlog)

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.3-{branch}-build{build}
2+
version: 2.14.4-{branch}-build{build}
33

44
os: Visual Studio 2019
55

doc/source/doxygen-docs/changelog.md

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

3+
# Version 2.14.4: Released Oct 19th, 2024
4+
- BUG FIXES:
5+
- mrpt::nav::CAbstractPTGBasedReactive: Missing heading information in recently-added TP-Space targets as TPose2D.
6+
- rosbag2rawlog: Fix detection of mrpt-ros1bridge when built within mrpt_ros ROS packaging.
7+
38
# Version 2.14.3: Released Oct 12th, 2024
49
- Changes in libraries:
510
- \ref mrpt_img_grp:

libs/nav/src/reactive/CAbstractPTGBasedReactive.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1462,6 +1462,7 @@ void CAbstractPTGBasedReactive::build_movement_candidate(
14621462
ptg_target.target_alpha = ptg->index2alpha(ptg_target.target_k);
14631463
ptg_target.TP_Target.x = cos(ptg_target.target_alpha) * ptg_target.target_dist;
14641464
ptg_target.TP_Target.y = sin(ptg_target.target_alpha) * ptg_target.target_dist;
1465+
ptg_target.TP_Target.phi = trg.phi;
14651466

14661467
ipf.targets.emplace_back(ptg_target);
14671468
}

samples/nav_rrt_planning_example/test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ void TestRRT1()
9393
// gridmap.getAsPointCloud( planner_input.obstacles_points );
9494

9595
// Workspace bounding box:
96-
planner_input.world_bbox_min = mrpt::math::TPoint2D(bbox.min.x, bbox.min.y);
97-
planner_input.world_bbox_max = mrpt::math::TPoint2D(bbox.max.x, bbox.max.y);
96+
planner_input.world_bbox_min = {bbox.min.x, bbox.min.y, -M_PI};
97+
planner_input.world_bbox_max = {bbox.max.x, bbox.max.y, +M_PI};
9898

9999
// size_t iters=0;
100100
// Show results in a GUI and keep improving:

version_prefix.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2.14.3
1+
2.14.4
22
# IMPORTANT: This file is parsed by CMake, don't add any comment to
33
# the first line.
44
# This file is used in both Windows and Linux scripts to automatically

0 commit comments

Comments
 (0)