Fixed Vector3.GetNormalised!!!!!!! #211

Merged
direnbharwani merged 4 commits from SP3-16-Math into main 2022-11-15 19:27:27 +08:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a752bdb985 - Show all commits

View File

@ -52,7 +52,7 @@ namespace SHADE
Vector3 Vector3::GetNormalised()
{
return *this / GetSqrMagnitude();
return *this / GetMagnitude();
}
float Vector3::GetMagnitude()