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:
authorJoshua Leung <aligorith@gmail.com>2012-06-11 15:11:11 +0400
committerJoshua Leung <aligorith@gmail.com>2012-06-11 15:11:11 +0400
commit2a4a8fd43e83d4961ca25ad16b965217c274e1c1 (patch)
treef039b85c5a80d73200a73b01c8ddce2350685759 /source/blender/editors/animation/keyframes_general.c
parenteba2f2320cf1e0415897240b82d9ff892ce85ae7 (diff)
Cosmetic fixes
* PoseBone struct didn't have an icon * Comment fixes (stil referenced IPO's)
Diffstat (limited to 'source/blender/editors/animation/keyframes_general.c')
-rw-r--r--source/blender/editors/animation/keyframes_general.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c
index f29be418941..a8f8d2974e5 100644
--- a/source/blender/editors/animation/keyframes_general.c
+++ b/source/blender/editors/animation/keyframes_general.c
@@ -187,7 +187,7 @@ void clean_fcurve(FCurve *fcu, float thresh)
if ((fcu == NULL) || (fcu->bezt == NULL) || (fcu->totvert <= 1))
return;
- /* make a copy of the old BezTriples, and clear IPO curve */
+ /* make a copy of the old BezTriples, and clear F-Curve */
old_bezts = fcu->bezt;
totCount = fcu->totvert;
fcu->bezt = NULL;
@@ -412,13 +412,13 @@ void sample_fcurve(FCurve *fcu)
if (range) {
value_cache = MEM_callocN(sizeof(TempFrameValCache) * range, "IcuFrameValCache");
- /* sample values */
+ /* sample values */
for (n = 1, fp = value_cache; n < range && fp; n++, fp++) {
fp->frame = (float)(sfra + n);
fp->val = evaluate_fcurve(fcu, fp->frame);
}
- /* add keyframes with these, tagging as 'breakdowns' */
+ /* add keyframes with these, tagging as 'breakdowns' */
for (n = 1, fp = value_cache; n < range && fp; n++, fp++) {
nIndex = insert_vert_fcurve(fcu, fp->frame, fp->val, 1);
BEZKEYTYPE(fcu->bezt + nIndex) = BEZT_KEYTYPE_BREAKDOWN;