Spelling.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5079 dfc29bdd-3216-0410-991c-e03cc46cb475
master
cutealien 2015-04-07 20:54:46 +00:00
parent b99b829863
commit 818f856327
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ inline quaternion& quaternion::slerp(quaternion q1, quaternion q2, f32 time, f32
const f32 invscale = sinf(theta * time) * invsintheta;
return (*this = (q1*scale) + (q2*invscale));
}
else // linear interploation
else // linear interpolation
return lerp(q1,q2,time);
}