Spelling fixes

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6458 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien
2023-04-01 15:50:08 +00:00
committed by sfan5
parent e1f41edd29
commit 774d3d6d2b
5 changed files with 6 additions and 6 deletions

View File

@ -2057,7 +2057,7 @@ namespace core
core::vector3df v(vs);
v.normalize();
// cosinus angle
// cosine angle
T ca = f.dotProduct(t);
core::vector3df vt(v * (1 - ca));
@ -2118,7 +2118,7 @@ namespace core
// axis multiplication by sin
const core::vector3df vs = look.crossProduct(from);
// cosinus angle
// cosine angle
const f32 ca = from.dotProduct(look);
core::vector3df vt(up * (1.f - ca));