Skip to content

Commit

Permalink
[doc] Add path planner algorightms in path planner module.
Browse files Browse the repository at this point in the history
  • Loading branch information
florent-lamiraux committed Nov 26, 2024
1 parent fdaa8ec commit f31c378
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/hpp/core/path-planner/bi-rrt-star.hh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ namespace pathPlanner {
HPP_PREDEF_CLASS(BiRrtStar);
typedef shared_ptr<BiRrtStar> BiRrtStarPtr_t;

/// \addtogroup path_planning
/// \{

/// Bi-RRT* path planning algorithm
/// as described in http://www.golems.org/papers/AkgunIROS11-sampling.pdf
class HPP_CORE_DLLAPI BiRrtStar : public PathPlanner {
Expand Down Expand Up @@ -111,6 +114,9 @@ class HPP_CORE_DLLAPI BiRrtStar : public PathPlanner {
/// Weak pointer to itself
BiRrtStarWkPtr_t weak_;
}; // class BiRrtStar

/// \}

} // namespace pathPlanner
} // namespace core
} // namespace hpp
Expand Down
7 changes: 7 additions & 0 deletions include/hpp/core/path-planner/k-prm-star.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
namespace hpp {
namespace core {
namespace pathPlanner {

/// \addtogroup path_planning
/// \{

/// k-PRM* path planning algorithm
/// as described in https://arxiv.org/pdf/1105.1186.pdf.
class HPP_CORE_DLLAPI kPrmStar : public PathPlanner {
Expand Down Expand Up @@ -107,6 +111,9 @@ class HPP_CORE_DLLAPI kPrmStar : public PathPlanner {
/// Weak pointer to itself
kPrmStarWkPtr_t weak_;
}; // class kPrmStar

/// \}

} // namespace pathPlanner
} // namespace core
} // namespace hpp
Expand Down

0 comments on commit f31c378

Please sign in to comment.