26 #ifndef MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_LSL_H_
27 #define MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_LSL_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;
75 arc0 =
ccwArc(q0[2], target);
76 arc1 =
ccwArc(target, q1[2]);
77 dist = r * (arc0 + arc1) + d1;
86 Format_t sinTheta = std::sin(q0[2]);
87 if ((dy > 0 && sinTheta > 0) || (dy < 0 && sinTheta < 0)) {
88 d1 = dy / std::sin(q0[2]);
90 arc1 =
ccwArc(q0[2], q1[2]);
91 dist_i = r * (arc0 + arc1) + d1;
101 sinTheta = std::sin(q1[2]);
102 if ((dy > 0 && sinTheta > 0) || (dy < 0 && sinTheta < 0)) {
104 arc0 =
ccwArc(q0[2], q1[2]);
106 dist_i = r * (arc0 + arc1) + d1;
125 #endif // MPBLOCKS_DUBINS_CURVES_EIGEN_HYPER_TWO_THETA_Y_LSL_H_
Eigen::Matrix< Format_t, 3, 1 > Vector3d_t
Eigen::Matrix< Format_t, 3, 1 > Vector3d_t
__host__ __device__ Format_t ccwArc(Format_t a, Format_t b)
returns the counter clockwise (left) distance from a to b
Path< Format_t > Result_t
Eigen::Matrix< Format_t, 2, 1 > Vector2d_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.
HyperRect< Format_t > Hyper_t
static Result_t solve(const Vector3d_t &q0, const Hyper_t &h, const Format_t r)
Encodes a dubins path primitive, which is three connected arc segments.
Eigen::Matrix< Scalar, 2, 1 > leftCenter(const Eigen::Matrix< Scalar, 3, 1 > &q, Scalar r)
return the center of a counter clockwise (left) circle coincident to q with radius r ...