diff --git a/tutorials/math/interpolation.rst b/tutorials/math/interpolation.rst index 431f81c9b..69e955cc6 100644 --- a/tutorials/math/interpolation.rst +++ b/tutorials/math/interpolation.rst @@ -33,7 +33,7 @@ Vector interpolation Vector types (:ref:`Vector2 ` and :ref:`Vector3 `) can also be interpolated, they come with handy functions to do it :ref:`Vector2.linear_interpolate() ` and :ref:`Vector3.linear_interpolate() `. -For cubic interpolation, there are also :ref:`Vector2.cubic_interpolate() ` and :ref:`Vector3.cubic_interpolate() `, which do a :ref:`Bezier ` style interpolation. +For cubic interpolation, there are also :ref:`Vector2.cubic_interpolate() ` and :ref:`Vector3.cubic_interpolate() `, which do a :ref:`Bezier ` style interpolation. Here is example pseudo-code for going from point A to B using interpolation: