docs: removed unnecessary comment lines from math constants
This commit is contained in:
parent
da5f31f9d7
commit
026f343d43
@ -6,17 +6,17 @@ namespace Syntriax.Engine.Core;
|
|||||||
public static class Math
|
public static class Math
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The value of Pi (π), a mathematical constant approximately equal to 3.14159.
|
/// The value of Pi (π).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const float PI = 3.1415926535897932f;
|
public const float PI = 3.1415926535897932f;
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public const float Tau = 2f * PI;
|
public const float Tau = 2f * PI;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The base of the natural logarithm, approximately equal to 2.71828.
|
/// The base of the natural logarithm.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const float E = 2.718281828459045f;
|
public const float E = 2.718281828459045f;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user