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>2020-03-14 07:34:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-14 07:43:21 +0300
commitf0b0524c5fa7d4b8cc857000d8fdfba5170a980f (patch)
tree28ef3b49abdabd6a7f49b9ae8c5a67dfa1ce2f61 /source/blender/blenlib
parent117ccb56ad7a7047b335de9bb5d6ea6e0acf3133 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index 7da080dbe9a..d54ec0f1ac1 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -5724,7 +5724,7 @@ static float ff_quad_form_factor(float *p, float *n, float *q0, float *q1, float
static __m128 sse_approx_acos(__m128 x)
{
- /* needs a better approximation than taylor expansion of acos, since that
+ /* needs a better approximation than Taylor expansion of acos, since that
* gives big errors for near 1.0 values, sqrt(2 * x) * acos(1 - x) should work
* better, see http://www.tom.womack.net/projects/sse-fast-arctrig.html */