From 026f343d4367a99a0a5981d240c73b23c1a9932a Mon Sep 17 00:00:00 2001 From: Syntriax Date: Fri, 27 Jun 2025 14:42:25 +0300 Subject: [PATCH] docs: removed unnecessary comment lines from math constants --- Engine.Core/Math.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;