Lerp 1.0.3
dotnet add package Lerp --version 1.0.3
NuGet\Install-Package Lerp -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Lerp" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lerp --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Lerp, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Lerp as a Cake Addin #addin nuget:?package=Lerp&version=1.0.3 // Install Lerp as a Cake Tool #tool nuget:?package=Lerp&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Description:
Defines Lerp and Map2 typeclasses in FSharpPlus style. Implement generic lerp function. Also allows generic map2 function that can be used to implement generic lerp on containers.
Examples:
type Map2 with
static member Map2 ((f, xs, ys), _mthd: Map2) = List.map2 f xs ys
static member Map2 ((f, xo, yo), _mthd: Map2) = Option.map2 f xo yo
type Lerp with
static member Lerp ((dt: float', v: float', f: float'), _mthd: Lerp) = float'.lerp v f dt
static member Lerp ((dt: float32, v: float32, f: float32), _mthd: Lerp) = (1.f - dt) * v + dt * f
static member Lerp ((dt: float', v: Vec, f: Vec), _mthd: Lerp) = Vec.lerp v f dt
static member inline Lerp ((dt: float', v:'``Container<^v>``, f:'``Container<^f>``), _mthd: Lerp) = map2 (fun v f -> lerp dt v f) v f
let map2o : int option = map2 (fun a b -> a + b) (Some 3) (None)
let lerpf = lerp 0.1f 0.0f 1.0f
let lerpv = lerp (fract 1 60) Vec.Zero Vec.one
let lerpov : Option<Vec> = lerp (fract 1 60) (Some Vec.Zero) (Some Vec.one)
let lerplv : List<Vec> = lerp (fract 1 60) [Vec.Zero] [Vec.one]
let lerpolv : List<Option<Vec>> = lerp (fract 1 60) [Some Vec.Zero] [Some Vec.one]
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5.2
- FSharp.Compiler.Tools (>= 10.0.2)
- FSharpPlus (>= 1.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.