Commit 818f8563 authored by cutealien's avatar cutealien

Spelling.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5079 dfc29bdd-3216-0410-991c-e03cc46cb475
parent b99b8298
...@@ -553,7 +553,7 @@ inline quaternion& quaternion::slerp(quaternion q1, quaternion q2, f32 time, f32 ...@@ -553,7 +553,7 @@ inline quaternion& quaternion::slerp(quaternion q1, quaternion q2, f32 time, f32
const f32 invscale = sinf(theta * time) * invsintheta; const f32 invscale = sinf(theta * time) * invsintheta;
return (*this = (q1*scale) + (q2*invscale)); return (*this = (q1*scale) + (q2*invscale));
} }
else // linear interploation else // linear interpolation
return lerp(q1,q2,time); return lerp(q1,q2,time);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment