~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/KX_ScalarInterpolator.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-04-28 12:11:12 UTC
  • mto: (14.1.6 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20120428121112-2zi0vp8b6vejda8i
Tags: upstream-2.63
ImportĀ upstreamĀ versionĀ 2.63

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "KX_ScalarInterpolator.h"
34
34
#include "KX_IScalarInterpolator.h"
35
35
 
36
 
void KX_ScalarInterpolator::Execute(float currentTime) const {
 
36
void KX_ScalarInterpolator::Execute(float currentTime) const
 
37
{
37
38
        *m_target = m_ipo->GetValue(currentTime);
38
39
}