~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/intern/key.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*  key.c      
3
3
 *  
4
4
 * 
5
 
 * $Id: key.c,v 1.5 2004/03/20 22:55:37 zuster Exp $
 
5
 * $Id: key.c,v 1.7 2004/12/11 12:41:51 ton Exp $
6
6
 *
7
7
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
8
8
 *
578
578
{
579
579
        KeyBlock *kb;
580
580
        IpoCurve *icu;
581
 
        float fac[32], fval;
 
581
        float fac[KEY_TOTIPO], fval;
582
582
        int *ofsp, ofs[3], elemsize, a, b;
583
583
        char *cp, *poin, *reffrom, *from, elemstr[8];
584
584
        
841
841
                                break;
842
842
                        case IPO_BEZTRIPLE:
843
843
                                flerp(9, (void *)poin, (void *)k1, (void *)k2, (void *)k3, (void *)k4, t);
 
844
                                flerp(1, (float *)(poin+36), (float *)(k1+36), (float *)(k2+36), (float *)(k3+36), (float *)(k4+36), t);
844
845
                                poin+= ofsp[0];                         
845
846
 
846
847
                                break;