Merge pull request #81229 from raulsntos/dotnet/arc-hyperbolic
C#: Expose `asinh`, `acosh` and `atanh` in Mathf
This commit is contained in:
commit
0215d53a10
1 changed files with 90 additions and 0 deletions
|
@ -103,6 +103,36 @@ namespace Godot
|
||||||
return Math.Acos(s);
|
return Math.Acos(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) cosine of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's cosine in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is larger or equal to 1.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic cosine value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic cosine value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static float Acosh(float s)
|
||||||
|
{
|
||||||
|
return MathF.Acosh(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) cosine of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's cosine in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is larger or equal to 1.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic cosine value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic cosine value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static double Acosh(double s)
|
||||||
|
{
|
||||||
|
return Math.Acosh(s);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the arc sine of <paramref name="s"/> in radians.
|
/// Returns the arc sine of <paramref name="s"/> in radians.
|
||||||
/// Use to get the angle of sine <paramref name="s"/>.
|
/// Use to get the angle of sine <paramref name="s"/>.
|
||||||
|
@ -131,6 +161,36 @@ namespace Godot
|
||||||
return Math.Asin(s);
|
return Math.Asin(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) sine of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's sine in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is larger or equal to 1.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic sine value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic sine value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static float Asinh(float s)
|
||||||
|
{
|
||||||
|
return MathF.Asinh(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) sine of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's sine in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is larger or equal to 1.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic sine value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic sine value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static double Asinh(double s)
|
||||||
|
{
|
||||||
|
return Math.Asinh(s);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the arc tangent of <paramref name="s"/> in radians.
|
/// Returns the arc tangent of <paramref name="s"/> in radians.
|
||||||
/// Use to get the angle of tangent <paramref name="s"/>.
|
/// Use to get the angle of tangent <paramref name="s"/>.
|
||||||
|
@ -201,6 +261,36 @@ namespace Godot
|
||||||
return Math.Atan2(y, x);
|
return Math.Atan2(y, x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) tangent of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's tangent in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is between -1 and 1 (non-inclusive).
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic tangent value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic tangent value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static float Atanh(float s)
|
||||||
|
{
|
||||||
|
return MathF.Atanh(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the hyperbolic arc (also called inverse) tangent of <paramref name="s"/> in radians.
|
||||||
|
/// Use it to get the angle from an angle's tangent in hyperbolic space if
|
||||||
|
/// <paramref name="s"/> is between -1 and 1 (non-inclusive).
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="s">The input hyperbolic tangent value.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// An angle that would result in the given hyperbolic tangent value.
|
||||||
|
/// </returns>
|
||||||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||||
|
public static double Atanh(double s)
|
||||||
|
{
|
||||||
|
return Math.Atanh(s);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Rounds <paramref name="s"/> upward (towards positive infinity).
|
/// Rounds <paramref name="s"/> upward (towards positive infinity).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue