smooth
A C++ library for Lie theory
Loading...
Searching...
No Matches
dubins.hpp
Go to the documentation of this file.
1// Copyright (C) 2021-2022 Petter Nilsson. MIT License.
2
3#pragma once
4
10#include "smooth/se2.hpp"
11#include "spline.hpp"
12
13SMOOTH_BEGIN_NAMESPACE
14
23template<int K = 3>
24 requires(K >= 1)
25Spline<K, smooth::SE2d> dubins_curve(const smooth::SE2d & gb, double R = 1);
26
27SMOOTH_END_NAMESPACE
28#include "detail/dubins_impl.hpp"
Single-parameter Lie group-valued function.
Definition spline.hpp:28
SMOOTH_BEGIN_NAMESPACE Spline< K, smooth::SE2d > dubins_curve(const smooth::SE2d &gb, double R=1)
Create dubins Spline.
Piecewise polynomial splines on lie groups.