This commit is contained in:
PC-20230316NUNE\Administrator
2024-08-31 21:05:29 +08:00
parent d67032e1de
commit 77b305be7a
53 changed files with 316 additions and 118 deletions

View File

@@ -111,6 +111,15 @@ namespace JNGame.Math
#endregion
public static LFloat Build1000(int val)
{
return new LFloat("", val);
}
public static LFloat Build(int val)
{
return new LFloat(val);
}
public LFloat SetInfinite(bool isInfinite)
{
this.isInfinite = 0;
@@ -614,6 +623,11 @@ namespace JNGame.Math
public static readonly LFloat EPS_1MS = new LFloat(null, 1L);
/// <summary>
/// 10
/// </summary>
public static readonly LFloat L1 = 1.ToLFloat();
/// <summary>
/// 10
/// </summary>