mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 05:15:43 +00:00
Update upm branch (d27f4caef7
)
This commit is contained in:
parent
66fcab80f2
commit
daf7a84390
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
29
X10D.xml
29
X10D.xml
@ -6953,6 +6953,17 @@
|
|||||||
If <paramref name="bias" /> is less than 0.5, <paramref name="value" /> will be shifted downward; otherwise, upward.
|
If <paramref name="bias" /> is less than 0.5, <paramref name="value" /> will be shifted downward; otherwise, upward.
|
||||||
</remarks>
|
</remarks>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:X10D.Math.MathUtility.Bias(System.Double,System.Double)">
|
||||||
|
<summary>
|
||||||
|
Applies a simple bias function to value.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The value to which the bias function will be applied.</param>
|
||||||
|
<param name="bias">The bias value. Valid values range from 0-1.</param>
|
||||||
|
<returns>The biased result.</returns>
|
||||||
|
<remarks>
|
||||||
|
If <paramref name="bias" /> is less than 0.5, <paramref name="value" /> will be shifted downward; otherwise, upward.
|
||||||
|
</remarks>
|
||||||
|
</member>
|
||||||
<member name="M:X10D.Math.MathUtility.GammaToLinear(System.Single)">
|
<member name="M:X10D.Math.MathUtility.GammaToLinear(System.Single)">
|
||||||
<summary>
|
<summary>
|
||||||
Converts a gamma-encoded value to a linear value using a gamma value of <c>2.2</c>.
|
Converts a gamma-encoded value to a linear value using a gamma value of <c>2.2</c>.
|
||||||
@ -7077,6 +7088,24 @@
|
|||||||
<param name="newMax">The new maximum value.</param>
|
<param name="newMax">The new maximum value.</param>
|
||||||
<returns>The scaled value.</returns>
|
<returns>The scaled value.</returns>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:X10D.Math.MathUtility.SmoothStep(System.Single,System.Single,System.Single)">
|
||||||
|
<summary>
|
||||||
|
Performs smooth Hermite interpolation from one value to a target using a specified alpha.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The interpolation source.</param>
|
||||||
|
<param name="target">The interpolation target.</param>
|
||||||
|
<param name="alpha">The interpolation alpha.</param>
|
||||||
|
<returns>The interpolation result.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Math.MathUtility.SmoothStep(System.Double,System.Double,System.Double)">
|
||||||
|
<summary>
|
||||||
|
Performs smooth Hermite interpolation from one value to a target using a specified alpha.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The interpolation source.</param>
|
||||||
|
<param name="target">The interpolation target.</param>
|
||||||
|
<param name="alpha">The interpolation alpha.</param>
|
||||||
|
<returns>The interpolation result.</returns>
|
||||||
|
</member>
|
||||||
<member name="T:X10D.Math.SByteExtensions">
|
<member name="T:X10D.Math.SByteExtensions">
|
||||||
<summary>
|
<summary>
|
||||||
Math-related extension methods for <see cref="T:System.SByte" />.
|
Math-related extension methods for <see cref="T:System.SByte" />.
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"url": "https://oliverbooth.dev"
|
"url": "https://oliverbooth.dev"
|
||||||
},
|
},
|
||||||
"displayName": "X10D",
|
"displayName": "X10D",
|
||||||
"version": "3.2.0-nightly.218",
|
"version": "3.2.0-nightly.219",
|
||||||
"unity": "2021.3",
|
"unity": "2021.3",
|
||||||
"description": "Extension methods on crack",
|
"description": "Extension methods on crack",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
Loading…
Reference in New Issue
Block a user