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

@ -155,7 +155,7 @@ namespace core
//! Calculates the cross product with another vector.
/** \param p Vector to multiply with.
\return Crossproduct of this vector with p. */
\return Cross product of this vector with p. */
vector3d<T> crossProduct(const vector3d<T>& p) const
{
return vector3d<T>(Y * p.Z - Z * p.Y, Z * p.X - X * p.Z, X * p.Y - Y * p.X);