Imagine you have a point, a single little dot on a piece of paper. What’s the quickest way to go from that point to another point on the piece of paper? You (the reader) sigh and answer ”A straight line” because it’s completely obvious; even first graders know that. Now let’s imagine you have an open parking lot, with a human standing in it. What’s the quickest way for the human to get from one side of the parking lot to the other? The answer is again obvious to you, so you get a little annoyed and half-shout ”A straight-line again, duh!”. Okay, okay, enough toss-up questions. Now what if I gave you a car in the parking lot and asked you what was the quickest way for that car to get into a parking spot? Hmm, a little harder now.
You can’t say a straight line because what if the car isn’t facing directly towards the parking space? Cars don’t just slide horizontally and then turn in place, so planning for them seems to be a lot more difficult than for a human. But! We can make planning for a car just about as easy as for a human if we consider the car to be a special type of car we’ll call a Dubin’s Car. Interested in knowing how? Then read on!
In robotics, we would consider our human from the example above to be a type of holonomic agent. Don’t let this terminology scare you; I’ll explain it all. A holonomic agent can simply be considered an agent who we have full control over. That is, if we treat the human as a point in the x-y plane, we are able to go from any coordinate to any other coordinate always. Humans can turn on a dime, walk straight forward, side-step, walk backwards, etc. They really have full control over their coordinates.
A car however, is not holonomic because we don’t have full control over it at all times. Therefore we call a car a type of nonholonomic agent.
Cars can only turn about some minimal radius circle, therefore they can’t move straight towards a point just barely to their left or right. As you can imagine, planning paths for nonholonomic agents is much more difficult than for holonomic ones.
Let’s simplify our model of our car. How about this: it can only move forwards — never backwards, and it’s always moving at a unit velocity so we don’t have to worry about braking or accelerating. What I just described is known as a Dubin’s car, and planning shortest paths for it is a well studied problem in robotics and control theory. What makes the Dubin’s car attractive is that its shortest paths can be solved exactly using relatively simple geometry, whereas planning for many other dynamical systems requires some pretty high level and complicated matrix operations.
The Dubin’s Car was introduced into the literature by Lester Dubins, a famous mathematician and statistician, in a paper published in 1957. The cars essentially have only 3 controls: “turn left at maximum”, “turn right at maximum”, and “go straight”. All the paths traced out by the Dubin’s car are combinations of these three controls. Let’s name the controls: “turn left at maximum” will be L, “turn right at maximum” will be R, and “go straight” will be S. We can make things even more general: left and right turns both describe curves, so lets group them under a single category that we’ll call C (”curve”). Lester Dubins proved in his paper that there are only 6 combinations of these controls that describe ALL the shortest paths, and they are: RSR, LSL, RSL, LSR, RLR, and LRL. Or using our more general terminology, there’s only two classes: CSC and CCC.
Despite being relatively well studied, with all sorts of geometric proofs out there and qualitative statements about what the shortest paths look like, I could not find one single source on the internet that described in depth how to actually compute these shortest paths! So what that we know the car can try to turn left for some amount of time, then move straight, and then move right — I want to know exactly how much I need to turn, and how long I need to turn for. And if you’re like me in the least, you tend to forget some geometry that you learned in high school, so doing these computations isn’t as “trivial” for you like all the other online sources make it out to be.
If you’re looking for the actual computations needed to compute these shortest paths, then you’ve come to the right place. The following will be my longest article to-date, and is basically a how-to guide on computing the geometry required for the Dubin’s shortest paths.
Overview
This blog post was originally written in and then transcribed here to WordPress. If you’d like a more portable, possibly easier to read version, then download the PDF version here (You may also cite this pdf if you’re writing a bibliography).
Let’s first talk about the dynamics of our system, and then describe in general terms what the shortest paths look like. Afterwards, I’ll delve into the actual calculations. Car-like robots all have one thing in common — they have a minimum turning radius. Think of this minimum turning radius as a circle next to the car that, try as it might, the robot can only go around the circle’s circumference if it turns as hard as it can. The radius of this circle, is the car’s minimum turning radius. This radius is determined by the physics of the car
the maximum angle the tires can deviate from “forward”, and the car’s wheelbase, or the length from the front axle to rear axle. Marco Monster has a really good descriptive article that talks about these car dynamics.
Car Dynamics
I already mentioned that the Dubin’s car could only move forward at a unit velocity, and by “forward” I mean it can’t change gears into reverse. Let’s describe the vehicle dynamics more formally. A Car’s configuration can be describe by the triplet . Define the car’s velocity (actually speed, because it will be a scalar quantity) as
. When a car is moving at velocity
about a circle of radius
, it will have angular velocity
Now let’s define how our system evolves over time. If you know even just the basics of differential equations, this will be cake for you. If not, I’ll explain. When we want to describe how our system evolves over time, we use notation like to talk about how our x coordinate changes over time.
In basic vector math, if our car is at position with
, and we move straight forward for a single timestep, then our new configuration is
Note how our
coordinate changes as a function of
. Therefore, we’d say that
. A full system description would read like this:
I’d like to point out that this equation is linear in that the car’s new position is changing to be some straight line away from the previous one. In reality, this is not the case; cars are nonlinear systems. Therefore, the dynamics I described above are merely an approximation of the true system dynamics. Linear systems are much easier to handle, and if we do things right, they can approximate the true dynamics so well that you’d never be able to tell the difference. The dynamics equations translate nicely into update equations. These update equations describe what actually happens each time you want to update the car’s configuration. That is, if you’re stepping through your simulator, at each timestep you’d want to update the car. As the Dubin’s car only has unit velocity, we’ll replace all instances of with
.
Note that I actually replaced instances of with the symbol
. What’s with that? Well, remember when I said that our dynamics are a linear approximation of a nonlinear system? Every time we update, we are moving the car along a line. If we only move a very short amount on this line, then we approximate turns more finely. Think of it this way: You are trying to draw a circle using a series of evenly-spaced points. If you only use 3 points, you get a triangle. If you use 4 you get a square, and 8 you get an octagon. As you add more and more points you get something that more closely resembles the circle. This is the same concept.
essentially tells us the amount of spacing between our points. If it is really small, then the points are close together and we get overall motion that looks closer to reality.
High-level Description of Dubin’s curves
In this section I’ll briefly go over what each of the 6 trajectories (RSR, LSR, RSL, LSR, RLR, LRL) looks like. (Disclaimer: I do not claim to be an artist, and as such the figures you see that I drew in the following sections are NOT to scale; they merely serve to illustrate all the geometry being discussed.)
CSC Trajectories
The CSC trajectories include RSR, LSR, RSL, and LSR — a turn followed by a straight line followed by another turn (Shown in Figure 1).
Pick a position and orientation for your start and goal configurations. Draw your start and goal configurations as points in the plane with arrows extending out in the direction the car is facing. Next, draw circles to the left and right of the car with radius . The circles should be tangent at the location of the car. Draw tangent lines from the circles at the starting configuration to the circles at the goal configuration. In the next section I’ll discuss how to compute this, but for now just draw them.
For each pair of circles (RR), (LL), (RL), (LR), there should be four possible tangent lines, but note that there is only one valid line for each pair (Shown in Figure 2. That is, for the RR circles, only one line extending from the agent’s circle meets the goal’s circle such that everything is going in the correct direction. Therefore, for any of the CSC Trajectories, there is a unique tangent line to follow. This tangent line makes up the ‘S’ portion of the trajectory. The points at which the line is tangent to the circles are the points the agent must pass through to complete its trajectory. Therefore, solving these trajectories basically boils down to correctly computing these tangents.
CCC Trajectories
CCC Trajectories are slightly different. They consist of a turn in one direction followed by a turn in the opposite direction, and then another turn in the original direction, like the RLR Trajectory shown in Figure 3. They are only valid when the agent and its goal are relatively close to each other, else one circle would need to have a radius larger than , and if we must do that, then the CCC Trajectory is sub-optimal. For the Dubin’s Car there are only 2 CCC Trajectories: RLR and LRL. Computing the tangent lines between RR or LL circles won’t help us this time around. The third circle that we turn about is still tangent to the agent and goal turning circles, but these tangent points are not the same as those from tangent line calculations. Therefore, solving these trajectories boils down to correctly computing the location of this third tangent circle.
Tangent Line Construction
In this section, I will discuss the geometry in constructing tangent lines between two circles. First I’ll discuss how to do so geometrically, and then I’ll show how to do so in a more efficient, vector-based manner.
Given: two circles and
, with radii
and
respectively.
Consider the center of as
, the center of
as
, and so on. (Figure 4).
Method 1: Geometrically computing tangents
Inner tangents
1. First draw a vector from
to
.
. This vector has a magnitude:
2. Construct a circle centered at the midpoint of
with radius
That is,
3. Construct a circle centered at
’s center, with radius$latexr_4 = r_1 + r_2$
4. Construct a vector from
to the “top” point,
of intersection between
and
. If we can compute this vector, then we can get the first tangent point because
is pointing at it in addition to
. For visual reference, see Figure 7.
5. This is accomplished by first drawing a triangle from to
to pt like the one shown in Figure 8. The segments
and
have magnitude
. The segment
has magnitude
. We are interested in the angle
.
will give us the angle that vector
that would need to rotate through to point in the same direction as vector
. We obtain the full amount of rotation about the
axis,
for
, by the equation
(Note: the atan2() function first takes the y-component, and then the x-component)
is therefore obtained by traversing
for a distance of
. That is,
6. To find the first inner tangent point pit1 on C1 , we follow a similar procedure to how we obtained pt — we travel along from
, but we only go a distance of
. Because we know
, we are now able to actually compute
. Now, we need to normalize
and
then multiply it by to achieve a vector $latex\vec{V_3}$ to $latexp_{it1}$ from
. (Remember that, to normalize a vector, you divide each element by the vector’s magnitude
.
follows simply:
It may be a bit of an abuse of notation to add a vector to a point, but when we add the components of the point to the components of the vector, we get our new point and everything works out.
7. Now that we have , we can draw a vector
from
to
like in Figure 9. Note that this vector is parallel to an inner tangent between
and
We can take advantage of its magnitude and direction to find an inner tangent point on . Given that we’ve already calculated
, getting its associated tangent point on
,
is as easy as:
I hope this is clear enough for you to be able to compute the other inner tangent point. The trick is to use the “bottom” intersection point between and
, and then work everything out exactly the same to get
and
, which define the other inner tangent line.
Outer tangents
Constructing outer tangents is very similar to constructing the inner tangents. Given the same two circles and
as before, and assuming
Remember how we started off by making
centered at
with radius
? Well this time around we’ll construct it a bit differently.
is centered at
as before, but this time it has radius
.
Follow the steps we performed for the interior tangent points, constructing on the midpoint of
exactly the same as before. Find the intersection between
and
to get
just as before as well. After we’ve gone through all the steps as before up to the point where we’ve obtained
, we can get the first outer tangent point
by following
a distance of
just as before. I just wanted to note that the magnitude of
before normalization is
instead of
. To get
, the accompanying tangent point on
, we perform addition:
This is exactly the same as before. In essence, the only step that changes between calculating outer tangents as opposed to inner tangents is how is constructed; all other steps remains exactly the same.
Method 2: A Vector-based Approach
Now that we understand geometrically how to get tangent lines between two circles, I’ll show you a more efficient way to do so using vectors that has no need for constructing circles or
. We didn’t work through the example in the previous section for nothing– we had to work up to Step 7 so that you could have some intuition on why the following vector method works.
1. Draw your circles and
as before (Figure 4).
2. Draw vector from
to
. This has magnitude
as before.
3. Draw a vector between your tangent points. In this case, it’s easier to start with outer tangent points, which we’ll call pot1 and
. So,
4. Draw a unit vector perpendicular to . We’ll call it
(normal vector).
Figure 10 depicts our setup. In the general case, the radii of and
will not be equivalent, but for us it will. This method works for both cases.
5. Let’s consider some relationships between these vectors.
• The dot product between and
is 0 because the vectors are perpendicular.
• because
is a unit vector.
• We can modify vector to be parallel to
quite easily by subtraction:
Refer to Figure 10: Setup for computing tangents via the vector method.
Why does this work? For some intuition, consider Step 7 in the previous section: We drew a vector from to
’s center, and
then I stated that the vector was parallel to the vector between the tangent points. Well, both points were equidistant from their
respective tangents; we need to move a distance of
to get to the first tangent point. Likewise we need to translate
(the center of the other circle) ”down” the same amount of distance.
Using the head-to-tail method of vector addition, you can see that we modified to be this same vector! Now that I’ve convinced you that this modification causes
to be parallel to
, the following statement holds:
• Simplifying the above equation by distributing :
• Further simplifying the equation:
• Let’s normalize by dividing by its magnitude,
. This doesn’t change the dot product between
and
because the vectors are still perpendicular, but we also have to divide the right-hand side by
:
I’ll refer to the normalized Simply as
from here on.
• Now we can solve for because it is the only unknown in the equations:
• The dot product between two vectors and
is defined as:
Where is the angle between them. Therefore, in the equation
is the cosine of the angle between
and
. Because it’s constant, and I don’t want to keep re-typing it, let’s define
(constant).
• All that remains now is to rotate through the angle
, and it will be equivalent to
. Rotating a vector is a well known operation in mathematics.
is, therefore:
Remember that is the cosine of the angle between
and
, therefore the sine of the angle is
because
6. Knowing as well as
(remember when we modified
to be
to
?), allows us to very easily calculate the tangent points by first going from the center of
along n for a distance of
, and then from there following
to get the second tangent point.
The other tangent points are easily calculated from this vector-based formalism, and it’s much faster to do than all the geometry transformations
we did with Method 1. Refer to freely available code online for how to actually implement the vector method.
Computing CSC curves
The only reason we needed to compute tangent points between circles is so that we could find the ‘S’ portion of our CSC curves. Knowing the tangent points on our circles we need to plan to, computing CSC paths simply become a matter of turning on a minimum turning radius until the first tangent point is reached, travelling straight until the second tangent point is reached, and then turning again at a minimum turning radius until the goal configuration is reached. There’s really just one gotcha one needs to worry about this step, and that has to do with the directionality of the circles. When an agent wants to traverse the arc of a circle between two points on the circle’s circumference, it must follow the circle’s direction. That is, an agent cannot turn left (positive) on a right-turn-only (negative) circle. This can become an issue when computing the arc lengths between points on a circle. The thing about all your trigonometry functions is that they will only return you the short angle between things. With directed circles, though, very often you want to actually be traversing the long angle between two
points on the circle. Fortunately there is a simple fix.
Computing Arc Lengths
Given: A circle centered at
with points
and
along its circumference, radius
, and circle directionality
, which can be “left” or “right”.
Arc lengths of circles are computed by multiplying the radius of the circle by the angle between the points along the circumference. Therefore arc length,
, and
can be naively computed using the law of cosines
after you compute the Euclidean distance between the points. I say naively because this method will only give you the shorter arc length, which will not always be correct for your directed circles (Figure 11).
A better strategy would be to generate vectors from the center of the circle to the points along the circumference. That is, and
. Let’s assume that the arc you want to traverse is from
to
with direction
.
We can use the function to compute the small angle between the points as before, but the difference is that
gives us directional information. That is,
will be positive or negative depending on what direction
rotated to end up at
. A positive rotation is a “left” turn and a negative rotation is a “right” turn. We can check the sign of this angle against
. If our angle’s sign disagrees with the direction we’d like to turn, we’ll correct it by either adding or subtracting 2
.
That is:
With a function like this to compute your arc lengths, you will now very easily be able to compute the duration of time to apply your “turn left” or “turn right” controls within a circle.
The geometry of CSC trajectories
RSR, LSL, RSL, and LSR trajectories are all calculated similarly to each other, so I’ll only describe the RSR trajectory (Figure 12).
Given starting configuration and goal configuration
, we wish to compute a trajectory that consists of first turning right (negative) at a minimum turning radius, driving straight, and then turning right (negative) again at minimum turning radius until the goal configuration is reached. Assume that the minimum turning radius is
.
First, we must calculate the circles about which the agent will turn — a circle of minimum radius to the “right” of s as well as a circle of minimum radius
to the “right” of
. The center of
, becomes
Similarly, the center of becomes
Now that we’ve obtained the circles about which the agent will turn, we need to find the outer tangent points we can traverse. I demonstrated earlier how one would go about calculating all the tangent points given two circles. For an RR circle, though, only one set of outer tangents is valid. If you implement your tangent-pt computing function appropriately, it will always return tangent points in a reliable manner. At this point, I’ll assume you are able to obtain the proper tangent points for a right-circle to right-circle connection.
Your tangent point function should return points and
which respectively define the appropriate tangent points on
, the agent’s right-turn circle and
, the query configurations’ right-turn circle.
Now that we’ve calculated geometrically the points we need to travel through, we need to transform them into a control the agent can understand. Such a control should be in the form of “do this action at this timestep”. For the Dubin’s car, this is pretty easy. If we define a control as a pair of (steering angle, timesteps), then we can define a RSR trajectory as an array of 3 controls: (,
), (
,
), and (
,
). We still need to compute the number of timesteps, but this isn’t so bad.
We know () , the position of our starting configuration, as well as
our outer tangent point. Both of these points lie on the circumference of the minimum turning-radius “right-turn only” circle to the right of the
, the starting configuration. Now we can take advantage of our ArcLength function to compute the distance between the two points given a right-turn. Typically, simulations don’t update entire seconds at once, but rather some some
. This is a type of integration called Euler integration that allows us to closely approximate the actual trajectory the car should follow, though not perfectly so. Because we’ve defined the Dubin’s car’s update function as a linear function of the form
then we actually travel in a straight line from timestep to timestep. A big therefore results in a poor approximation of reality. As
approaches 0, though, we more closely approximate reality. Typically a delta in the range of [0.01,0.05] is appropriate, but you may need finer or coarser control. Accounting for
, our update equations become:
Now that we have decided on a value for , we can compute the number of timesteps to apply each steering angle. Given the length of an arc
(computed using the ArcLength function, or just simply the magnitude of the tangent line)
Computing the other trajectories now becomes a matter or getting the right tangent points to plan towards. The RSR and LSL trajectories will use outer tangents while the RSL and LSR trajectories use the inner tangents.
Computing CCC trajectories
Two of the Dubin’s shortest paths don’t use the tangent lines at all. These are the RLR and LRL trajectories, which consist of three tangential, minimum radius turning circles. Very often, these trajectories aren’t even valid because of the small proximity that and
must be to each other for such an arrangement of the three circles to be possible. If the distance between the agent and query configurations’ turning circles is less than
, then a CCC curve is valid. I say less than
, because if the distance were equal, then a CSC trajectory is more optimal.
For CCC trajectories, we must calculate the location of the third circle, as well as its tangent points to the circles near s and g. To be more concrete, I’ll address the LRL case, shown in Figure 13.
Consider the minimum-radius turning circle to the “left” of to be
and the minimum-radius turning circle to the “left” of
to be to
. Our task is now to compute
, a minimum-radius turning circle tangent to both
and
plus the points
and
which are respective points of intersection between
and
, and between
and
. Let
be the centers of
and
, respectively. We can form the triangle
using these points. Because
is tangent to both
and
, we already know the lengths of all three sides.
Segments and
have length
and segment
has length
. We are interested in the angle
because that is the angle that the line between
and
(
) must rotate to face the center of
, which will allow us to calculate
. Using the law of cosines, we can determine that
In a LRL trajectory, we’re interested in a that is “left” of
. At the moment, we have an angle,
that represents the amount of rotation that vector
must rotate to point at the center of
. However,
’s value is only valid if
is parallel to the x-axis. Otherwise, we need to account for the amount
is rotated with the
function —
. For a LRL trajectory, we want to add
to this value, but for an RLR trajectory we want to subtract
from it to obtain a circle “to the
right” of . (Remember that we consider left, or counter-clockwise turns to be positive.)
Now that theta represents the absolute amount of rotation, we can compute
Computing the tangent points and
becomes easy; we can define vectors from the
to
and
, and walk down them a distance of
. As an example, I’ll calculate
. First, obtain the vector
from
to
;
. Next, change the vector’s magnitude to
by normalizing it and multiplying by
(or just dividing its components by 2, as its magnitude should already be
).
Next, compute using the new
;
Computing follows a similar procedure. At this point we have everything we need for our CCC trajectory! We have three arcs as before, from
to
. From
to
, and from
to
. One can compute arc lengths and durations as before to finish things off.
Conclusions
So now that we’ve computed all of the shortest paths for the Dubin’s Car, what can we do next? Well, you could use them to write a car simulator. The paths are very quick to compute, but are what’s known as ”open-loop” trajectories. An open-loop trajectory is only valid if you apply the desired controls exactly as stated – so a computer. Even if you used a computer to control your car, this would still only work perfectly in simulation. In the real-world we have all kinds of sources for error, that we represent as uncertainty in our controls. If a human driver tried to apply our Dubin’s shortest path controls, they wouldn’t end up exactly on target, would they? Perhaps in a later article I will discuss motion planning under uncertainty, but for now I defer you to the internet.
Another application we could use these shortest path calculations for would be something known as a rapidly exploring random tree, or RRT. An RRT uses the know-how of planning between two points to find reachable points in an environment that has obstacles. The resulting structure of points that are connected is a tree with a root at our start, and the paths one gets from the tree can look pretty good; imagine a car deftly maneuvering around things in its way.RRTs are a big topic of research right now, andSteven LaValle has a wealth of information about them.
Following from the Dubin’s RRT idea, you might one day use a much more complicated car-like robot. For this complicated car-like robot you may want to also use an RRT. Remember when I said that the resulting structure of an RRT looks like a tree with its root at our start? Well, to ”grow” this tree, one has to continue adding points to it, and part of that process is determining which point in the tree to connect to. Typically this is done by just choosing the closest point in the tree. ”Closest” usually means, ”the shortest line between myself and any point in the tree”. For a lot of robots (holonomic especially), this straight-line distance is just fine, but for car-like (nonholonomic) robots it may not be good enough, because you can’t always move on a straight line between start and goal. Therefore, you could use the length of the Dubin’s shortest path instead of the straight-line shortest path as your measure of distance! (We’re using the Dubin’s shortest paths as a ”distance metric”).
In reality, the Dubin’s shortest paths are not a true distance metric because they are not ”symmetric”, which means that the distance from A to B isn’t always the same as the distance from B to A. Because the Dubin’s car can only move forward, it isn’t symmetric. However, if you expanded the Dubin’s car to be able to move backwards, you’d have created a Reeds-Shepp car, and the Reeds-Shepp shortest paths are symmetric.
Acknowledgement:
I’d like to thank my colleague Jory Denny for LaTeX sorcery and various grammar edits.
I’ve made the code (sans graphics stuff) available on my GitHub account:https://github.com/gieseanw/Dubins