Skip to content

Commit 732db3d

Browse files
authored
Fix Doc generation warning (#1125)
1 parent 2a489b3 commit 732db3d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/getting_started_main.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For development:
4040
- `sphinx`_ (for document generation)
4141
- `ruff`_ (for code style check)
4242

43-
.. _`Python 3.11.x`: https://www.python.org/
43+
.. _`Python 3.12.x`: https://www.python.org/
4444
.. _`NumPy`: https://numpy.org/
4545
.. _`SciPy`: https://scipy.org/
4646
.. _`Matplotlib`: https://matplotlib.org/

docs/modules/path_planning/catmull_rom_spline/catmull_rom_spline_main.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Catmull-Rom Spline Planning
2-
-----------------
2+
----------------------------
33

44
.. image:: catmull_rom_path_planning.png
55

@@ -10,7 +10,7 @@ exhibits local control, and maintains 𝐶1 continuity.
1010

1111

1212
Catmull-Rom Spline Fundamentals
13-
~~~~~~~~~~~~~~
13+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1414

1515
Catmull-Rom splines are a type of cubic spline that passes through a given set of points, known as control points.
1616

@@ -24,7 +24,7 @@ Where:
2424
* :math:`P_0, P_1, P_2, P_3` are the control points surrounding the parameter :math:`t`.
2525

2626
Types of Catmull-Rom Splines
27-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2828

2929
There are different types of Catmull-Rom splines based on the choice of the **tau** parameter, which influences how the curve
3030
behaves in relation to the control points:
@@ -51,7 +51,7 @@ behaves in relation to the control points:
5151
5252
5353
Blending Functions
54-
~~~~~~~~~~~~~~~~~~
54+
~~~~~~~~~~~~~~~~~~~~~
5555

5656
In Catmull-Rom spline interpolation, blending functions are used to calculate the influence of each control point on the spline at a
5757
given parameter :math:`t`. The blending functions ensure that the spline is smooth and passes through the control points while
@@ -97,7 +97,7 @@ API
9797

9898

9999
References
100-
~~~~~~~~~~
100+
~~~~~~~~~~~~~~
101101

102102
- `Catmull-Rom Spline - Wikipedia <https://en.wikipedia.org/wiki/Centripetal_Catmull%E2%80%93Rom_spline>`__
103103
- `Catmull-Rom Splines <http://graphics.cs.cmu.edu/nsp/course/15-462/Fall04/assts/catmullRom.pdf>`__

0 commit comments

Comments
 (0)