4 references to Lerp
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.Lerp.cs (1)
108return Vector128.Lerp(x.AsDouble(), y.AsDouble(), amount.AsDouble()).As<double, T>();
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
2195/// <inheritdoc cref="Vector128.Lerp(Vector128{double}, Vector128{double}, Vector128{double})" /> 2207Vector128.Lerp(x._lower, y._lower, amount._lower), 2208Vector128.Lerp(x._upper, y._upper, amount._upper)