diff --git a/Engine.Core/Math.cs b/Engine.Core/Math.cs index 4fe4d52..27eaecc 100644 --- a/Engine.Core/Math.cs +++ b/Engine.Core/Math.cs @@ -6,17 +6,17 @@ namespace Syntriax.Engine.Core; public static class Math { /// - /// The value of Pi (π), a mathematical constant approximately equal to 3.14159. + /// The value of Pi (π). /// public const float PI = 3.1415926535897932f; /// - /// The value of Tau (τ), a mathematical constant equal to 2π, approximately equal to 6.28319. + /// The value of Tau (τ), mathematical constant equal to 2π. /// public const float Tau = 2f * PI; /// - /// The base of the natural logarithm, approximately equal to 2.71828. + /// The base of the natural logarithm. /// public const float E = 2.718281828459045f;