Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-06-03 04:27:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-03 04:32:53 +0300
commita51f8f94d5dc7c0b8f61de35f277052144299662 (patch)
treed5f904b1b4058f563a267fc782d9c7cc7db28e43 /source/blender/blenkernel/intern/fcurve.c
parent17f72be3cb7c50044a10c00e266253f5896f0770 (diff)
Cleanup: use ascii characters instead of unicode where possible
Follow own code style docs.
Diffstat (limited to 'source/blender/blenkernel/intern/fcurve.c')
-rw-r--r--source/blender/blenkernel/intern/fcurve.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c
index 30d5a54b479..68ed3c239ef 100644
--- a/source/blender/blenkernel/intern/fcurve.c
+++ b/source/blender/blenkernel/intern/fcurve.c
@@ -1559,8 +1559,7 @@ void BKE_fcurve_correct_bezpart(const float v1[2], float v2[2], float v3[2], con
}
/**
- .
- * Find roots of cubic equation (c0 x³ + c1 x² + c2 x + c3)
+ * Find roots of cubic equation (c0 x^3 + c1 x^2 + c2 x + c3)
* \return number of roots in `o`.
*
* \note it is up to the caller to allocate enough memory for `o`.