Update upm branch (436f56d912)

This commit is contained in:
github-actions 2023-03-29 15:22:39 +00:00
parent f00938d398
commit b4253fbdd8
4 changed files with 40 additions and 13 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

View File

@ -6060,6 +6060,14 @@
<param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param> <param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param>
<returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns> <returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns>
</member> </member>
<member name="M:X10D.Math.DecimalExtensions.Saturate(System.Decimal)">
<summary>
Saturates this decimal number.
</summary>
<param name="value">The value to saturate.</param>
<returns>The saturated value.</returns>
<remarks>This method clamps <paramref name="value" /> between 0 and 1.</remarks>
</member>
<member name="M:X10D.Math.DecimalExtensions.Sign(System.Decimal)"> <member name="M:X10D.Math.DecimalExtensions.Sign(System.Decimal)">
<summary> <summary>
Returns an integer that indicates the sign of this decimal number. Returns an integer that indicates the sign of this decimal number.
@ -6290,6 +6298,14 @@
<param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param> <param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param>
<returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns> <returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns>
</member> </member>
<member name="M:X10D.Math.DoubleExtensions.Saturate(System.Double)">
<summary>
Saturates this double-precision floating-point number.
</summary>
<param name="value">The value to saturate.</param>
<returns>The saturated value.</returns>
<remarks>This method clamps <paramref name="value" /> between 0 and 1.</remarks>
</member>
<member name="M:X10D.Math.DoubleExtensions.Sin(System.Double)"> <member name="M:X10D.Math.DoubleExtensions.Sin(System.Double)">
<summary> <summary>
Returns the sine of the specified angle. Returns the sine of the specified angle.
@ -7253,6 +7269,14 @@
<param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param> <param name="nearest">The nearest multiple to which <paramref name="value" /> should be rounded.</param>
<returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns> <returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns>
</member> </member>
<member name="M:X10D.Math.SingleExtensions.Saturate(System.Single)">
<summary>
Saturates this single-precision floating-point number.
</summary>
<param name="value">The value to saturate.</param>
<returns>The saturated value.</returns>
<remarks>This method clamps <paramref name="value" /> between 0 and 1.</remarks>
</member>
<member name="M:X10D.Math.SingleExtensions.Sign(System.Single)"> <member name="M:X10D.Math.SingleExtensions.Sign(System.Single)">
<summary> <summary>
Returns an integer that indicates the sign of this single-precision floating-point number. Returns an integer that indicates the sign of this single-precision floating-point number.

View File

@ -6,10 +6,13 @@
"url": "https://oliverbooth.dev" "url": "https://oliverbooth.dev"
}, },
"displayName": "X10D", "displayName": "X10D",
"version": "3.2.0-nightly.163", "version": "3.2.0-nightly.174",
"unity": "2021.2", "unity": "2021.3",
"description": "Extension methods on crack", "description": "Extension methods on crack",
"keywords": ["dotnet", "extension-methods"], "keywords": [
"dotnet",
"extension-methods"
],
"changelogUrl": "https://github.com/oliverbooth/X10D/blob/main/CHANGELOG.md", "changelogUrl": "https://github.com/oliverbooth/X10D/blob/main/CHANGELOG.md",
"licensesUrl": "https://github.com/oliverbooth/X10D/blob/main/LICENSE.md" "licensesUrl": "https://github.com/oliverbooth/X10D/blob/main/LICENSE.md"
} }