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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-04-28 23:48:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-28 23:48:25 +0400
commit6600fe0de5cacc023585ea2d618d0f5eca248d12 (patch)
treef072c55125be7dc5a2e9ac611c8e2b13d3a5844b /source
parent89b3dcaf822bf750b87f5e48c8498dd2d6e1515b (diff)
Correction to last commit
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenlib/intern/easing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/easing.c b/source/blender/blenlib/intern/easing.c
index 6b702fe85dc..90bdd3a5cc3 100644
--- a/source/blender/blenlib/intern/easing.c
+++ b/source/blender/blenlib/intern/easing.c
@@ -153,7 +153,7 @@ static float elastic_blend(float time, float change, float amplitude, float peri
if (change) {
/* Looks like a magic number,
* but this is a part of the sine curve we need to blend from */
- const float t = fabsf(period) / (32 * (float)M_PI);
+ const float t = fabsf(period) / (64 * (float)M_PI);
if (amplitude) {
f *= amplitude / fabsf(change);
}