1 reference to MultiplyAddEstimate
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1014
public static Decimal64 Lerp(Decimal64 value1, Decimal64 value2, Decimal64 amount) =>
MultiplyAddEstimate
(value1, One - amount, value2 * amount);