From 163cc5ea58d68ee994f1546d118333dc01217552 Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Mon, 2 May 2022 21:06:33 +0900 Subject: [PATCH] Update dubins_path.rst (#663) * Update dubins_path.rst * Update dubins_path.rst --- .../path_planning/dubins_path/dubins_path.rst | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/modules/path_planning/dubins_path/dubins_path.rst b/docs/modules/path_planning/dubins_path/dubins_path.rst index 5e14820f..6765a846 100644 --- a/docs/modules/path_planning/dubins_path/dubins_path.rst +++ b/docs/modules/path_planning/dubins_path/dubins_path.rst @@ -5,7 +5,18 @@ A sample code for Dubins path planning. .. image:: https://github.com/AtsushiSakai/PythonRoboticsGifs/raw/master/PathPlanning/DubinsPath/animation.gif?raw=True -Ref: +Dubins path +~~~~~~~~~~~~ +Dubims path is a analyrical path planning algorithm for a simple car model. -- `Dubins path - - Wikipedia `__ +It can generates a shortest path between 2D poses (x, y, yaw) with maximum curvture comstraint and tangent(yaw angle) constraint. + + + + + +Reference +~~~~~~~~~~~~~~~~~~~~ + +- `Dubins path - Wikipedia `__ +- `15.3.1 Dubins Curves `__