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-09-19 07:18:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-19 07:26:40 +0300
commita78130c6101517c09eed14215087ab3dfe36bc5c (patch)
tree9b7373181f610dc91a08816f285b2193821b73e8 /source/blender/blenkernel/intern/anim_sys.c
parent8ca698427fdcbabc60ca22bdfeb91e1e0ce1f5d0 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern/anim_sys.c')
-rw-r--r--source/blender/blenkernel/intern/anim_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index a348d759e97..43648713cf8 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -1402,7 +1402,7 @@ static NlaEvalChannel *nlaevalchan_verify(PointerRNA *ptr, NlaEvalData *nlaeval,
/* accumulate the old and new values of a channel according to mode and influence */
static float nla_blend_value(int blendmode, float old_value, float value, float inf)
{
- /* optimisation: no need to try applying if there is no influence */
+ /* Optimization: no need to try applying if there is no influence. */
if (IS_EQF(inf, 0.0f)) {
return old_value;
}
@@ -1443,7 +1443,7 @@ static float nla_blend_value(int blendmode, float old_value, float value, float
static float nla_combine_value(
int mix_mode, float base_value, float old_value, float value, float inf)
{
- /* optimisation: no need to try applying if there is no influence */
+ /* Optimization: no need to try applying if there is no influence. */
if (IS_EQF(inf, 0.0f)) {
return old_value;
}