Math/Angle: Fix Zero()

This commit is contained in:
SirLynix 2023-07-14 14:18:28 +02:00
parent 62663dc8e1
commit ff491eddc7
1 changed files with 1 additions and 4 deletions

View File

@ -681,10 +681,7 @@ namespace Nz
template<AngleUnit Unit, typename T>
constexpr Angle<Unit, T> Angle<Unit, T>::Zero()
{
Angle angle;
angle.MakeZero();
return angle;
return Angle(0);
}
/*!