mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 05:55:41 +00:00
Update upm branch (436f56d912
)
This commit is contained in:
parent
f00938d398
commit
b4253fbdd8
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
24
X10D.xml
24
X10D.xml
@ -6060,6 +6060,14 @@
|
||||
<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>
|
||||
</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)">
|
||||
<summary>
|
||||
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>
|
||||
<returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns>
|
||||
</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)">
|
||||
<summary>
|
||||
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>
|
||||
<returns><paramref name="value" /> rounded to the nearest multiple of <paramref name="nearest" />.</returns>
|
||||
</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)">
|
||||
<summary>
|
||||
Returns an integer that indicates the sign of this single-precision floating-point number.
|
||||
|
@ -6,10 +6,13 @@
|
||||
"url": "https://oliverbooth.dev"
|
||||
},
|
||||
"displayName": "X10D",
|
||||
"version": "3.2.0-nightly.163",
|
||||
"unity": "2021.2",
|
||||
"version": "3.2.0-nightly.174",
|
||||
"unity": "2021.3",
|
||||
"description": "Extension methods on crack",
|
||||
"keywords": ["dotnet", "extension-methods"],
|
||||
"keywords": [
|
||||
"dotnet",
|
||||
"extension-methods"
|
||||
],
|
||||
"changelogUrl": "https://github.com/oliverbooth/X10D/blob/main/CHANGELOG.md",
|
||||
"licensesUrl": "https://github.com/oliverbooth/X10D/blob/main/LICENSE.md"
|
||||
}
|
Loading…
Reference in New Issue
Block a user