Cleanup uses of double spaces between words or after punctuation

This commit is contained in:
Rémi Verschelde
2021-06-07 10:44:02 +02:00
parent 08150dca70
commit 044b6a74f8
28 changed files with 125 additions and 141 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ Traversal
The last common use case for the curves is to traverse them. Because of what was mentioned before regarding constant speed, this is also difficult.
To make this easier, the curves need to be *baked* into equidistant points. This way, they can be approximated with regular interpolation (which can be improved further with a cubic option). To do this, just use the :ref:`Curve.interpolate_baked()<class_Curve_method_interpolate_baked>` method together with
To make this easier, the curves need to be *baked* into equidistant points. This way, they can be approximated with regular interpolation (which can be improved further with a cubic option). To do this, just use the :ref:`Curve.interpolate_baked()<class_Curve_method_interpolate_baked>` method together with
:ref:`Curve2D.get_baked_length()<class_Curve2D_method_get_baked_length>`. The first call to either of them will bake the curve internally.
Traversal at constant speed, then, can be done with the following pseudo-code: