mirror of
https://github.com/JoeyDeVries/LearnOpenGL.git
synced 2026-01-30 20:13:22 +08:00
spelling: another
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -83,7 +83,7 @@ namespace irrklang
|
|||||||
return X*other.X + Y*other.Y + Z*other.Z;
|
return X*other.X + Y*other.Y + Z*other.Z;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns distance from an other point.
|
//! Returns distance from another point.
|
||||||
/** Here, the vector is interpreted as point in 3 dimensional space. */
|
/** Here, the vector is interpreted as point in 3 dimensional space. */
|
||||||
ik_f64 getDistanceFrom(const vec3d<T>& other) const
|
ik_f64 getDistanceFrom(const vec3d<T>& other) const
|
||||||
{
|
{
|
||||||
@@ -91,7 +91,7 @@ namespace irrklang
|
|||||||
return sqrt(vx*vx + vy*vy + vz*vz);
|
return sqrt(vx*vx + vy*vy + vz*vz);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns squared distance from an other point.
|
//! Returns squared distance from another point.
|
||||||
/** Here, the vector is interpreted as point in 3 dimensional space. */
|
/** Here, the vector is interpreted as point in 3 dimensional space. */
|
||||||
ik_f32 getDistanceFromSQ(const vec3d<T>& other) const
|
ik_f32 getDistanceFromSQ(const vec3d<T>& other) const
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user