7 references to Lerp
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.Lerp.cs (1)
101public static T Invoke(T x, T y, T amount) => T.Lerp(x, y, amount);
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
829/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.Lerp(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1545/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.Lerp(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1642T value = T.Lerp(x.GetElementUnsafe(index), y.GetElementUnsafe(index), amount.GetElementUnsafe(index));
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1177/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.Lerp(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
2051T value = T.Lerp(x.GetElementUnsafe(index), y.GetElementUnsafe(index), amount.GetElementUnsafe(index));
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
826/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.Lerp(TSelf, TSelf, TSelf)" />