26 #ifndef MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_RSR_H_
27 #define MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_RSR_H_
31 namespace curves_eigen {
33 namespace two_theta_y {
36 template <
int ySpec,
int tSpec,
typename Format_t>
48 for (
int i = 0; i < 3; i++) {
57 q1 << q0[0], get_constraint<ySpec, 1>(h), get_constraint<tSpec, 2>(h);
63 const Format_t dy = c1[1] - c0[1];
66 Format_t dist, dist_i, d1, arc0, arc1;
76 arc0 =
cwArc(q0[2], target);
77 arc1 =
cwArc(target, q1[2]);
78 dist = r * (arc0 + arc1) + d1;
87 Format_t sinTheta = std::sin(q0[2]);
88 if ((dy > 0 && sinTheta > 0) || (dy < 0 && sinTheta < 0)) {
91 arc1 =
cwArc(q0[2], q1[2]);
92 dist_i = r * (arc0 + arc1) + d1;
101 sinTheta = std::sin(q1[2]);
102 if ((dy > 0 && sinTheta > 0) || (dy < 0 && sinTheta < 0)) {
104 arc0 =
cwArc(q0[2], q1[2]);
106 dist_i = r * (arc0 + arc1) + d1;
125 #endif // MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_RSR_H_
Eigen::Matrix< Format_t, 3, 1 > Vector3d_t
__host__ __device__ Format_t cwArc(Format_t a, Format_t b)
returns the clockwise (right) distance from a to b
Eigen::Matrix< Format_t, 3, 1 > Vector3d_t
HyperRect< Format_t > Hyper_t
Eigen::Matrix< Format_t, 2, 1 > Vector2d_t
Path< Format_t > Result_t
interface for variants of solvers, default template is never instantiated
int id
identifies the type of path
A hyper-rectangle in dubins space: A rectangular prism in R^3.
Eigen::Matrix< Scalar, 2, 1 > rightCenter(const Eigen::Matrix< Scalar, 3, 1 > &q, Scalar r)
return the center of a clockwise (right) circle coincident to q with radius r
Encodes a dubins path primitive, which is three connected arc segments.
static Result_t solve(const Vector3d_t &q0, const Hyper_t &h, const Format_t r)