docs: removed unnecessary comment lines from math constants

This commit is contained in:
Syntriax 2025-06-27 14:42:25 +03:00
parent da5f31f9d7
commit 026f343d43

View File

@ -6,17 +6,17 @@ namespace Syntriax.Engine.Core;
public static class Math
{
/// <summary>
/// The value of Pi (π), a mathematical constant approximately equal to 3.14159.
/// The value of Pi (π).
/// </summary>
public const float PI = 3.1415926535897932f;
/// <summary>
/// The value of Tau (τ), a mathematical constant equal to 2π, approximately equal to 6.28319.
/// The value of Tau (τ), mathematical constant equal to 2π.
/// </summary>
public const float Tau = 2f * PI;
/// <summary>
/// The base of the natural logarithm, approximately equal to 2.71828.
/// The base of the natural logarithm.
/// </summary>
public const float E = 2.718281828459045f;